Odoo Web Controllers by Deviati Nur Istiqomah Nov 7, 2022 Web Controllers None [1] ** Controllers None [2] ** Controllers need to provide extensibility, much like Model [3] , but can’t use the same mechanism as the pre-requisites (a database with loaded mod... Read more
Testing Odoo by Deviati Nur Istiqomah Nov 7, 2022 Testing Odoo None [1] ** There are many ways to test an application. In Odoo, we have three kinds of tests Python unit tests (see Testing Python code [2] ): useful for testing model business logic JS... Read more
Odoo Performance by Deviati Nur Istiqomah Nov 7, 2022 Performance None [1] ** Profiling None [2] ** Profiling is about analysing the execution of a program and measure aggregated data. These data can be the elapsed time for each function, the executed SQ... Read more
Security in Odoo by Deviati Nur Istiqomah Nov 7, 2022 Security in Odoo None [1] ** Aside from manually managing access using custom code, Odoo provides two main data-driven mechanisms to manage or restrict access to data. Both mechanisms are linked to sp... Read more
Odoo QWeb Reports by Deviati Nur Istiqomah Nov 7, 2022 QWeb Reports None [1] ** Reports are written in HTML/QWeb, like website views in Odoo. You can use the usual QWeb control flow tools [2] . The PDF rendering itself is performed by wkhtmltopdf [3] . ... Read more
Odoo Module Manifests by Deviati Nur Istiqomah Nov 7, 2022 Module Manifests None [1] ** Manifest None [2] ** The manifest file serves to declare a python package as an Odoo module and to specify module metadata. It is a file called __manifest__.py and conta... Read more
Odoo Actions by Deviati Nur Istiqomah Nov 7, 2022 Actions None [1] ** Actions define the behavior of the system in response to user actions: login, action button, selection of an invoice, … Actions can be stored in the database or returned directly a... Read more
Odoo Data Files by Deviati Nur Istiqomah Nov 7, 2022 Data Files None [1] ** Odoo is greatly data-driven, and a big part of modules definition is thus the definition of the various records it manages: UI (menus and views), security (access rights and rec... Read more
Odoo ORM API by Deviati Nur Istiqomah Nov 7, 2022 ORM API None [1] ** Object Relational Mapping module: Hierarchical structure Constraints consistency and validation Object metadata depends on its status Optimised processing by complex query (mult... Read more
Odoo Advanced N: Security by Deviati Nur Istiqomah Nov 7, 2022 Advanced N: Security None [1] ** Every day we hear about data leaks and attacks in the newspapers. We expect you to be aware and careful about how to avoid security breaches in your future development... Read more
OdooAdvanced K: Dashboards by Deviati Nur Istiqomah Nov 7, 2022 dvanced K: Dashboards None [1] ** Warning This tutorial assumes you have completed the Core Training [2] and have access to Odoo Enterprise features. To follow the exercise, it is recommended that ... Read more
Odoo Advanced J: PDF Reports by Deviati Nur Istiqomah Nov 7, 2022 Advanced J: PDF Reports None [1] ** Warning This tutorial assumes you have completed the Core Training [2] and have installed wkhtmltopdf [3] . To follow the exercise, it is recommended that you f... Read more