How to Set Limit Record in List View in Odoo 18 | Odoo 18 Functional Tutorials| Odoo 18 New Features – CBMS Odoo ERP

In Odoo, the limit attribute in a list view (also called a tree view) is used to control how many records are displayed per page in the list view of a model. It effectively sets the pagination size. #Odoo18 #Odoo18Tutorials #OdooListView #OdooTips #Odoo18NewFeatures #Odoo18ReleaseDate #Odoo18ERP #OdooFunctionalTutorial #OdooDevelopment #OdooCustomization #OdooTutorial #Odoo #OdooFunctional #OdooNewFeatures #Odoo18Development #OdooERP #OdooListview […]

EP-25: What is the Difference Between Image & Binary Field in Odoo 18 | Odoo 18 Development Tutorial – CBMS Odoo ERP

The two field definitions, image_1920 = fields.Image(string=”Student Image”) and image_1920 = fields.Binary(string=”Student Image”), both serve the purpose of storing image data in an Odoo model, but they have some key differences in how they are intended to be used and how Odoo handles them by default. Here’s a breakdown of the distinctions: fields.Image(string=”Student Image”) Intended […]

EP-21 How to Create & Add Fields in Odoo 18 | Fields in Odoo 18 | Odoo 18 Technical Tutorials – CBMS Odoo ERP

college_student.py admission_no = fields.Char(string=”Admission Number”, required=True) admission_date = fields.Date(string=”Admission Date”, required=True) first_name = fields.Char(string=”First Name”, required=True) last_name = fields.Char(string=”Last Name”, required=True) father_name = fields.Char(string=”Father’s Name”, required=True) mother_name = fields.Char(string=”Mother’s Name”, required=True) communication_address = fields.Text(string=”Communication Address”, required=True) street = fields.Char() street2 = fields.Char() zip = fields.Char() city = fields.Char() country_id= fields.Many2one(‘res.country’) state_id = fields.Many2one(‘res.country.state’, ‘Fed. State’, […]

EP-20: What are the General Properties of a Field in Odoo 18 | What are Fields in Odoo 18 | Odoo 18 – CBMS Odoo ERP

Odoo 18 General Properties Invisible: Enable this property when it is not necessary for users to view a field on the UI. This helps declutter the UI by only showing the essential fields depending on a specific situation. The Invisible attribute also applies inside Studio. To view hidden fields in Studio, click on a view’s View tab and enable Show […]

EP-19: What are Relational Fields in Odoo 18 | Odoo 18 Relational Fields Tutorials | Odoo 18 Videos – CBMS Odoo ERP

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 […]

EP-9: How to Create a Menu in Odoo 18 | Odoo 18 Development Tutorials | Odoo 18 Technical Tutorials – CBMS Odoo ERP

In Odoo, menus are part of the user interface that help users navigate to different features and functionalities within each module. Menus are structured hierarchically: main menus, sub-menus, and menu items (actions or views). Here’s a breakdown of menus in Odoo: 🔹 1. Main Menus These are the top-level categories visible on the top bar […]

How to Track Field Value Changes in Odoo | Track Field Value Changes | Odoo 15 Tutorial Videos – CBMS Odoo ERP

Track visibility is used to track the changes made to the fields, as our system is a multi-user system and different people can access the same record. #odoo15tutorials There might be cases where we have to keep track of who changed the field values. In these cases, we can use track_visibilty. #odoo15developmentvideos #odooforbeginners Video Contents […]