What is Odoo Developer Mode and why do you need it? Sep 11, 2023 Tutorials The Developer Mode is a powerful tool in Odoo that provides access to a range of settings and options for both developers and admin users. This feature is crucial for configuring and maintaining the s... Read more
How to create a new QWeb template using as a base existing one Sep 4, 2023 Tips When creating a new QWeb template in Odoo that is very similar to an existing one, which still needs to be left unchanged, there is no need to rewrite the whole code from the existing template. Instea... Read more
Overview of Odoo Community vs Enterprise Edition Sep 4, 2023 Odoo is a business management software that offers a comprehensive suite of tools including CRM, Sales, Accounting, Inventory, Purchase, HR, E-Commerce and many more. Its modern and intuitive user int... Read more
How to generate configuration file in Odoo May 18, 2023 After installing a new instance of Odoo, in most of the cases would be needed to generate a new configuration file. That can be done with the following command line: python odoo/odoo-bin -c path-to-co... Technical Read more
Not loaded CSS in the QWeb Reports May 18, 2023 In case the CSS is not loaded in the QWeb Reports, few System Parameters that may solve the issue are following: The system parameter web.base.url need to have as value the system's domain, in ... Technical Read more
How to upgrade all installed modules in Odoo May 18, 2023 In case we need to upgrade all installed modules in an Odoo instance, that can be done directly from the command line using the following command for Linux systems: python odoo/odoo-bin -c < path-to-c... Technical Read more
How to check if a user belongs to a particular group May 17, 2023 The method has_group in the model res.users is helpful for checking if a user belongs to a specific group. For example, if we need to check if a user is a salesman in the system, the code should l... Technical Read more
How to index a field in Odoo May 16, 2023 It is a good practice to create an index for the most searchable fields in the model. In that way, the database search performance can be significantly increased. However, should be careful not to add... Technical Read more
How to create a model in Odoo without a table in the database May 16, 2023 There are cases when is needed to have a model that will not be represented by a table in the database. By default, Odoo creates a table for every Model and TransientModel , but, there is option ... Technical Read more
Where to explore and evaluate Odoo? May 15, 2023 There are few places online where you can do an overview of the system and try the different available apps. The first place is the official Odoo website. Here you can create an account with 15 days t... Functional Read more
How to show the total of a numeric column in a tree view Apr 8, 2023 In order to show the total of a numeric column in a tree view it would need to use the attribute “ sum “. An example is shown below: < field name = " amount " sum = " Total Amount " /> Copy The string... Technical Read more