fields_get() can be used to inspect a model’s fields and check which ones seem to be of interest. Because it returns a large amount of meta-information (it is also used by client programs) it should be filtered before printing, the most interesting items for a human user are ‘string’ (the field’s label), ‘help’ (a help […]
Odoo Studio lets you add several different field types, including the following relational fields: Related fields: This is normally used to add more information from another related Model (database table). It has to be information from a Model that is already linked. many2one: This will create a new database relationship (in this example it’s between […]
We can use Odoo 14 Studio to add many different field types, and the process is basically the same for all of them.In this video, let’s see how different fields can be added to different views and customize it using the studio. #odoostudio #odoo14 #odoo ►► Visit our company website: ►► Our Odoo services Odoo […]
A computed field is declared just like any other regular field in Odoo along with the additional argument compute. The value is the name of the function as a string or a function. In this video, we are going to learn about computing fields, how it works, and @api.depends on Odoo 14. #odoo14 #odoo #odoofields […]
Sometimes in certain cases, we might need to make all fields of a model readonly in a particular state or a condition. This video discusses on how to do that without having to give conditions for each field in the model to be readonly. It’s done bypassing “turn_view_readonly” through context. Watch the full video to […]
This video explains how to Setting up the default value for fields in Odoo 13 Get the module from our repository: Related Videos: Configure Odoo 14 Project on Pycharm Ubuntu: Building a Module in Odoo 14: Composition of a module in Odoo 14: Module Structure in Odoo 14: Empty Module Structure Scaffold in Odoo 14: […]
In this video, we are going to learn about computing fields, how it works, and @api.depends on Odoo 13. Get the module from our repository: Related Videos: Configure Odoo 14 Project on Pycharm Ubuntu: Building a Module in Odoo 14: Composition of a module in Odoo 14: Module Structure in Odoo 14: Empty Module Structure […]
Video tutorial covers the relationship between the models by using the Many2many fields and usage and declaration of Many2Many fields in odoo. Related Videos: Building an odoo module: Create an Empty Module Structure Scaffold Command: Components and Structure of Odoo 13 Module: Get the module from our repository: Odoo 14 Videos: Configure Odoo 14 Project […]
Video tutorial includes the establishment of the relationship between the models using One2many fields. Also covers the declaration and properties of One2Many fields in odoo Related Videos: Building an odoo module: Create an Empty Module Structure Scaffold Command: Components and Structure of Odoo 13 Module: Many2One Fields in Odoo 13: Get the module from our […]