Questions tagged [odoo-11]

Odoo is a suite of open-source business apps written in Python and released under the LGPL license since version 9 (previously AGPL). It is used by 2 million users worldwide to manage companies of all different sizes. The main Odoo components are the server, 260 core modules (also called official modules) and around 4000 community modules.

                     Odoo was formerly known as OpenERP

enter image description here

Odoo was known as OpenERP until May 2014. It was rebranded because version 8 of the software included apps such as a website builder, e-commerce, point of sale and business intelligence. The software conforms to standard expectations of ERP systems, while providing additional modules beyond the coverage of traditional ERP systems.

Odoo S.A. provides a web site referencing the officially supported modules as well as community modules. Community modules can be referenced for free as long as they respect the open source licence of Odoo. As of June 2014, the number of Odoo apps reached more than 4000.

Module development mainly relies around editing and files. Some application logic (i.e. workflows and data structure) can be changed through the client interface using a developer mode.

The official Odoo apps are organized in 6 groups:

  • Front-end apps: website builder, blog, e-commerce
  • Sales management apps: CRM, point of sales, quotation builder
  • Business operations apps: project management, inventory, manufacturing, accounting and purchase
  • Marketing apps: mass mailing, lead automation, events, survey, forum, live chat
  • Human Resources apps: employee directory, enterprise social network, leaves management, timesheet, fleet management
  • Productivity apps: business intelligence, instant messaging, notes

The software is actively programmed, supported, and organized by Odoo S.A.. Odoo is similar to many open source projects where customized programming, support, and other services are also provided by an active global community and a network of 500 official partners.

Internal Links:

947 questions
4
votes
1 answer

Remove create and edit depending up on value of another field in odoo11

Need to remove create and edit in partner_id field in sales order depending on value of another field. I found one similar answer but it not working.
Thayif kabir
  • 715
  • 5
  • 20
4
votes
2 answers

How to add a state to a Selection field and show it ordered in the statusbar in Odoo 11?

I have added a new state to a Selection field, using the parameter selection_add: state = fields.Selection( selection_add=[ ('draft_ok', 'Validated Quotation'), ], ) Now I want to show it in the XML view, where currently state is…
forvas
  • 9,801
  • 7
  • 62
  • 158
4
votes
1 answer

How to get odoo model from javascript?

I'm trying to do a widget to attach to the sysTrayMenu, I need to know on the on_click event, the current model of the view. I know that I can get it from the current browser url, but I wanted to know if is there a cleaner way to get it from the…
Mariano DAngelo
  • 920
  • 5
  • 18
  • 39
4
votes
1 answer

how to change date-picker's default Day of week in odoo?

Currently in odoo date picker shows from Su-Mo-Tu-We-Th-Fr-Sa i want to make it starts from Mo-Tu-We-Th-Fr-Sa-Su in some case and in some case Su-Mo-Tu-We-Th-Fr-Sa. can anyone help me how to achive this as i checked in default odoo 12 addons it is…
Jack Sparrow
  • 628
  • 8
  • 20
4
votes
1 answer

In the common Odoo method 'execute_kw', what does the suffix 'kw' refer to?

I can't for the life of me find any place where the suffix of the name of the common Odoo method execute_kw is explained. What is the kw suffix for? Is it just two arbitrary letters?
4
votes
1 answer

Odoo 11 blank page in Back-end

The Problem In the Odoo Back-end, sometime, the window will only display the menuitems, the rest of the screen stay blank. Clicking on any of this menu will change the url to https://my_server_ip/web?debug#menu_id=68&action= The only thing that…
T.Nel
  • 1,540
  • 2
  • 18
  • 34
4
votes
2 answers

Domain on Many2one field

I need applay domain on field product_id in purchase.order.line model, after call onchange method in purchase.order model. Example: _inherit = "purchase.order" custom_id = fields.Many2one('custom.model', string='Custom')…
user_odoo
  • 2,284
  • 34
  • 55
4
votes
1 answer

Odoo Inheriting calendar and add public holidays into calendar view

I want to inherit the Odoo 11 module "hr.holiday" calendar views and then insert the public holidays into the calendar. For now I have the model as below for public holiday: class PublicHoliday(models.Model): _name = 'hr.public.holiday' …
4
votes
3 answers

How to restrict/disable the form view, while click tree view of one2many field in Odoo

How to restrict/disable the form view, while click the tree view of one2many field in Odoo.
maha lakshmi
  • 61
  • 1
  • 7
4
votes
1 answer

error while launching qweb report from python

I'm upgrading a module from odoo v10 to odoo v11. It is founded that the get_action is replaced with report_action. so I used the code as follows self.env.ref('report_action_name').report_action(self, data=data, config=False) but it gives me error…
HVH
  • 249
  • 6
  • 14
4
votes
4 answers

Error column doesn't exist on custom module Odoo

I'm working on a custom module and i need to add field to res.partner model. I've add some field to this model but since 1 week, when i try to add a new one i got this error : ERROR: column res_partner.my_field does not exist Other field works good…
4
votes
1 answer

How to remove label from group tag in Odoo 11 in views

I want to show only the photo without the label which show the word Image and the line as showing in the photo i use group tag to make the screen two sides and i want only the photo in the left side without the label of it which is appear by…
4
votes
2 answers

ImportError: No module named 'psutil'

Hello i'm trying to run an odoo project and everytime i try to run it i get the following error ImportError: No module named 'psutil' i have tried to run import psutil via command line and it gives me also this error i'm using odoo 11 and…
a3adel
  • 1,223
  • 4
  • 15
  • 26
4
votes
5 answers

How to use scaffold to create module in windows?

I read the official tutorials,Odoo's scaffolding can setup a basic module. To quickly get started simply invoke: $ ./odoo-bin scaffold Academy my-modules I tried it but it didn't work,Because it remind Odoo-bin is not a command I have entered the…
L.Ming
  • 71
  • 1
  • 1
  • 7
4
votes
4 answers

How to display warning message in Odoo-11?

I am using Odoo 11 and I want to display a Warning popup in a @api.constraint method. The warning popup that I want to display has two buttons, the first is an OK button used to ignore the warning and the other one is a Cancel button used to attempt…
1
2
3
63 64