In Odoo, making a field required can indeed be done through both Python code and XML views, and differences in how the required attribute behaves depending on whether it’s set in Python or XML. When you set the required attribute to True in Python code, it indeed makes the field required across all views where […]
Odoo supports several fields for better data handling with specific options for each type. Some of the basic field in Odoo are Integers , float , char , Selection , Many2one, One2many ,Many2many , Date , Datetime etc… Video Chapters: 01:26 – Char field, 01:42 – Integer field, 01:57 – Boolean field, 02:16 – Selection field, 02:33 – Float field, 02:49 […]
Help is tooltip text shown when you hover the pointer over the field, and it allows you to override the help text provided by the model definition.in this video, we discuss how to add a tooltip to fields. Video Contents ————————- 00:00 Introduction 00:39 Providing help text for a field #odoo15videos #odoo15developmentvideos #odootutorials Connect With […]
In this video, we can discuss how to make a field storable. #odoodevelopmentvideos #odoo15tutorials Video Contents ————————- 0:00 Introduction 1:45 Compute Function 2:00 Providing Store= True for Field 2:31 Checking the Working #odoo15technicalvideos Connect With Us: ———————— ➡️Website: ➡️Email : info@cybrosys.com ➡️Twitter: ➡️LinkedIn: ➡️Facebook: ➡️Instagram: ➡️Pinterest: #Field #Storable #Odoo #Odoo #Technical #Videos #Odoo #Development #Tutorials
In this video, we discuss defining default values for fields in odoo 15 by different methods. #odoo15development In odoo Sometimes we need to set a specific value for a field based on conditions. It can be possible using different methods, we can add specific value within the field using default and also by declaring default […]
Relational Fields provide the option to link the data of one model with the data of another model. In Odoo, relational field types are One2many, Many2one, Many2many. #relationalfields #one2many #many2manyodoo #Odoo #Odoo14 #OdooTechnical #Odoo14Technical An One2many field is a one-way direction of selecting multiple records from a table. For example, a Sales Order can contain […]
In Odoo fields defined with related to another field, values are not automatically stored in the Odoo database. A column will not be allocated for such fields. In order to store such a field in our database, we have added an extra argument store within the field definition. So, in this video, we’ll be describing […]
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 […]