In Odoo, relational fields are fields that create a relationship between models (i.e., between different database tables). They’re used to link records from one model to another. This is one of the most powerful features in Odoo’s ORM (Object-Relational Mapping), making it easy to define and manage relationships between different business objects. There are three […]
In the Odoo framework, “models” are used for structuring and managing data that the Odoo application stores. An Odoo model is a Python class that represents a database table. Odoo primarily uses three types of models: 1.models.Model (Regular Models): 2.models.TransientModel (Transient Models): 3.models.AbstractModel (Abstract Models): 1. Regular model/standard model The primary reason for using regular models is […]