Questions tagged [odoo]

Odoo is a suite of open-source business apps written in Python and its community version is released under the GNU LGPLv3 license. It is used by more than 7 million users worldwide to manage companies of all different sizes. The main Odoo components are the server, 270 core modules (also called official modules) and around 15000 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, eCommerce, 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.

There are two editions of Odoo (feature comparison):

  • Enterprise Edition (EE)
  • Community Edition (CE)

with multiple ways to setup:

  • online (SaaS)
  • packaged installers
  • source Install
  • Docker

Odoo S.A. provides a website 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 license of Odoo. As of March 2018, the number of Odoo apps reached more than 15000.

Module development mainly relies upon editing and files or using Odoo Studio (EE only). 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 into 4 groups:

  • Website: Website Builder, eCommerce, Blogs, Forums, Slides
  • Sales Management: CRM, Point of Sale, Quotation Builder, Subscriptions, Invoicing, Easy Signature
  • Business Operations: Accounting, Project Management, Human Resources (Recruitment, Employee Management, Expense Management, Appraisal, Fleet Management, Leaves Management), Inventory, Purchase, Manufacturing (MRP, PLM, Maintenance, Quality Management)
  • Productivity Tools: Communication (Discuss, Mailing Lists, Notes, Helpdesk, Appointment), Timesheet, Email Marketing, Events, Survey, Live Chat 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 1000 official partners.

Internal Links:

12483 questions
10
votes
10 answers

How to remove Create and Edit... from many2one field.?

Please advice me How to remove "Create and Edit..." from many2one field.? that item shows below in the many2one fields which I filtered with domain option. OpenERP version 7
Anne Mary
  • 319
  • 2
  • 4
  • 17
9
votes
1 answer

virtual real time limit (178/120s) reached

I am using ubuntu 16 version and running Odoo erp system 12.0 version. On my application log file i see information says "virtual real time limit (178/120s) reached". What exactly it means & what damage it can cause to my application? Also how i can…
shashank verma
  • 303
  • 1
  • 3
  • 9
9
votes
3 answers

Odoo extension and inheritance

Odoo has three types of inheritance, and I have at least that number of questions. 1. 'Normal' Inheritance (_inherit) This is relatively intuitive to me - but why don't they just do it in the pythonic way: ChildClass(ParentClass): Why do they have…
amchugh89
  • 1,276
  • 1
  • 14
  • 33
9
votes
2 answers

Odoo - add custom field attribute?

Is there a way to add custom field attribute in Odoo? For example every field has attribute help where you can enter message explaining the field for the user. So I want to add custom attribute, so that would change the way field acts for all types…
Andrius
  • 19,658
  • 37
  • 143
  • 243
9
votes
4 answers

Why are some items not translated in Odoo?

I have a problem with translations in Project module. Some menu items are not translated. What could be the problem? Here project_view.xml
Danila Ganchar
  • 10,266
  • 13
  • 49
  • 75
9
votes
1 answer

Odoo: How to include a 'page break' / second page in custom report (pdf)?

I created a new report from scratch using this guide: http://odoo.guide/report-design-workshop/ My Problem: If I have a lot of products on my report the last part including total amount etc. is not shown. I would like to have a kind of page break or…
CripZ
  • 115
  • 1
  • 1
  • 7
9
votes
2 answers

odoo - display name of many2one field combination of 2 fields

In my module i have the following many2one field: 'xx_insurance_type': fields.many2one('xx.insurance.type', string='Insurance') where xx.insurance.type is the following: class InsuranceType(osv.Model): _name='xx.insurance.type' _columns =…
ThomasS
  • 705
  • 1
  • 11
  • 30
9
votes
1 answer

Odoo - Write null to numeric column

In Odoo/OpenERP 7, I have a nullable numeric column called balance 'balance': fields.float(string='Balance',digits=(20,2)) I am trying to use Python code to update None into the field self.write(cr, uid, [1], { 'balance':None }) but, rather…
Daryl Van Sittert
  • 857
  • 12
  • 24
9
votes
2 answers

Recover admin password and email Odoo server

Months ago, I installed an Odoo server and it worked perfectly ! Problem is that I forgot the identification (email/pass) for the admin, wich is real bad. After uninstalling the server and reinstalling it I found out that the database was not wiped.…
Sam
  • 511
  • 2
  • 5
  • 15
9
votes
3 answers

How can I format date in Odoo 8 QWeb report?

The date in my Sales Order is currently showing as: Fecha: 21/11/2014 16:59:15 I want to show something like this: Fecha: Surco, 21 de Noviembre del 2014 I tried using t-esc with strftime but that doesn't work:
César
  • 9,939
  • 6
  • 53
  • 74
9
votes
3 answers

not rendering in OpenERP 7

I am working with OpenERP 7 I want to modify my invoice report footer to show the current page and the total number of pages like this : page:1/2 in the first page and page:2/2 in the second page... this is my code:
Andromida
  • 1,095
  • 1
  • 11
  • 28
9
votes
4 answers

How to get user's local timezone other than server timezone(UTC) in python?

In OpenERP, when I try to print the current date and time, it always print the 'UTC' time. But I want to get time in the user timezone . Each user have different timezone.For example 'CST6CDT', 'US/Pacific' or 'Asia/Calcutta'. So I need to get time…
OmaL
  • 5,037
  • 3
  • 31
  • 48
8
votes
1 answer

DeprecationWarning: distutils Version classes are deprecated while starting odoo15 on local

I installed odoo 15 on my local and installed all the dependances, but when i start my server it shows me a py warning and i am unable to solve this issue, any help will be much appreciated, the warning i am getting in my local is below: 2022-01-11…
Sidharth Panda
  • 404
  • 3
  • 17
8
votes
1 answer

Odoo 13: How to solve CacheMiss Exception

I'm working on generating a .docx document on Odoo 13, I checked the "report_py3o" module but there is no version for Odoo 13 so I decided to some kind of migrate (I just deleted the "@api.multi") the Odoo 12 version to Odoo 13. I got an error like…
m0r7y
  • 670
  • 1
  • 8
  • 27
8
votes
3 answers

explanation of odoo filter domain operator "child_of" and its preference over "in" operator

I am uncertain regarding what child_of does after reading the docs and the use of child_of operator over using in operator for filtering Odoo v10 domain docs can be found here which states the following for child_of is a child (descendant) of a…
nicolauscg
  • 115
  • 1
  • 5