How to Add New States to an Existing State Field in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

In Odoo 17, states play a pivotal role in indicating the different stages or statuses that records can undergo within the system. These states are commonly represented as selection fields in Odoo models, allowing users to easily discern the current status of a record. To append new states without altering the existing ones, the selection_add […]

How to Create Filters in Odoo 17 | How to Add a Filter in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

Search filters in Odoo 17 serve as a comprehensive toolkit, offering users many options to navigate and analyze their data effectively. These filters empower users to fine-tune their search criteria precisely, allowing them to specify the exact attributes and conditions needed to retrieve relevant records. Whether users are searching through lists, forms, or kanban boards, […]

How to Make a Field Storable in Odoo 17 | Odoo 17 Technical Videos | Odoo 17 Development Tutorials – CBMS Odoo ERP

In Odoo 17, to make a field storable, set store=True when defining it. By default, fields are storable unless set to store=False. Storable fields ensure data persistence across sessions and server restarts, crucial for maintaining data integrity and retrieval. However, computed or related fields are not stored by default (store=False) unless explicitly specified as store=True. […]