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
2
votes
2 answers

how to hide or remove checkbox column by default on tree view?

When creating a tree view by default, one more column appears with a checkbox how to hide or remove this column? I will appreciate all your help.
2
votes
1 answer

How to make selection field with widget="priority" unhoverable or readonly in odoo 11

I want make the selection field with widget="priority" not hoverable or readonly. I applied readonly="1" but is not working on this widget. kindly help.
2
votes
1 answer

How I can get transaction reference in Odoo13

In Odoo11, I can get transaction reference by this way transaction = request.website.sale_get_order().payment_tx_id transaction.reference But in Odoo13, payment_tx_id field has removed from sales order,
Unknown
  • 401
  • 4
  • 15
2
votes
1 answer

Boolean field added to crm is not saved

I inherited the crm.lead model and added a computed Boolean field, unfortunately it is not saved in the db and consequently I cannot operate on the view. This field if true adds a string to the kanban.
Plaoo
  • 417
  • 3
  • 19
2
votes
1 answer

How to apply a new function to all records automatically?

My Odoo 11 system already has records created by users. When I create a new function to add new features to odoo application, the function only applies to new records created after the existence of the new function. To apply it to existing records,…
Maurice
  • 21
  • 2
2
votes
1 answer

How to delete database table also while uninstalling module in odoo-11?

Currently, I am facing an issue to drop database table after uninstalling module in odoo. I have created one simple module with one model name like 'test_table'. I installed that module in odoo 11. But, When I am trying to uninstalling that module…
Mayur Jotaniya
  • 304
  • 1
  • 18
2
votes
1 answer

How to fix 'TypeError: unlink() missing 1 required positional argument: \'values\'\n''

Im using Python 3.6 and xmlrpc to unlink all canceled Sale orders in odoo 11 CE but im still getting this error: odoo11/odoo/api.py", line 690, in call_kw_multi\n result = method(recs, args, *kwargs)\nTypeError: unlink() missing 1 required…
Toprocker
  • 38
  • 5
2
votes
0 answers

How to display dynamic selection fields, based on value choosen formview in Odoo 12?

I am using Odoo 12, and trying to display to selection-fields, in formView, first selection field has 2 values, but second selection field has 4 values, 2 for each choosen field from first-selection-field. I am giving dummy-code, as I can't show…
GD- Ganesh Deshmukh
  • 1,456
  • 3
  • 24
  • 36
2
votes
2 answers

Access Rules on project.project Odoo11

I have a new group (Project Lead). This group needs to read other projects, and write his own project. Example: user1 is a manager in project001 and user2 is a manager in project002. We need for user1: edit only project001 and he needs to read…
2
votes
1 answer

Add button after import button odoo 11

everone. I was try to add a button after the import button. I was try like this :
Stefani Johnsson
  • 381
  • 1
  • 5
  • 18
2
votes
2 answers

Odoo 11: get cron id or name inside the called method for ir.cron that are create manually not just the ones that are created from XML

I assigned (m2o) to my_object a cron (Automation->Scheduled Actions). The cron execute (Python code) a method. I need to have the id (or name) of the cron that call the method inside the method to do some actions on the objects assigned to the…
mYmage
  • 92
  • 2
  • 14
2
votes
1 answer

Are translations ignored in email templates modified through Python in Odoo 11?

I want to modify the body of an email template, for example email_template_edi_sale in the module sale. Its declaration is inside a tag, which means that I have to do a workaround to modify it. So I have decided to make a Python…
forvas
  • 9,801
  • 7
  • 62
  • 158
2
votes
2 answers

Enable search filter in act_windows

I know that we can enable the search filter like this {'search_default_Product':1} But what if I want to programmatically enable the filter? Where can I put the code to enable it? Thanks
strike_noir
  • 4,080
  • 11
  • 57
  • 100
2
votes
1 answer

How to add a print a custom report from button in Odoo v11?

I created a custom report in the accounting module a while ago a custom report .. that works quite well .. now what I would like to do is add a button in the header as the one that has by default but that is related to my custom report
Hernan Chaparro
  • 161
  • 1
  • 2
  • 9
2
votes
1 answer

Error porting Odoo v8 module to Odoo v12 when i try to update the current invoice i'm adding a debit note from wizard form

I'm porting odoo v8 module to odoo v12, when i try to update the current invoice adding a debit note. This is my code: 2019-08-01 19:14:42,390 6827 INFO ? odoo: Odoo version 12.0 2019-08-01 19:14:42,390 6827 INFO ? odoo: Using configuration file at…
ZeroTwelve
  • 33
  • 2