How to Setup Default Value for a Field in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

In Odoo, you can set default values for fields by using the default attribute when defining the field in the model class. This allows you to specify a default value that will be automatically set for the field when a new record is created. Connect With Us: ————————————— ➡️ Website: ➡️ Email: info@cybrosys.com ➡️ Twitter: […]

How to Override Delete Function in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

In Odoo, you can override the unlink() method to customize the delete functionality for a specific model. This method is called when a record is deleted. By overriding it, you can add your custom logic or restrictions before allowing the deletion to proceed. #odoo17 #odootutorials #odoodevelopment Connect With Us: ————————————— ➡️ Website: ➡️ Email: info@cybrosys.com […]

Basic Views in Odoo 17 | What are the Basic Views in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

In Odoo, views are fundamental components of the user interface that define how data is presented and interacted with within the system. They essentially dictate the layout and appearance of different screens or pages within the application. Video Chapters 00:00 Introduction 01:31 Form View 04:04 Tree View 04:58 Calender View 06:18 Graph View Views are […]

How To Define Models in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

In Odoo 17, models play a crucial role in defining the structure and organization of your data, providing a flexible and scalable framework for building and extending business applications. #odoo17 They essentially act as blueprints for specific types of data, representing real-world concepts like customers, products, invoices, or projects.They serve as the backbone of the […]

URLs & Routing in Odoo 17 Website App | Odoo 17 Development Tutorials | URLs and Routing in Odoo 17 – CBMS Odoo ERP

In Odoo 17, routings and URLs define the mapping between web addresses and specific functionalities or pages within the system, facilitating efficient navigation and interaction for users accessing the application through a web browser. #odoo17 #odoodevelopment #odoowebsite Routings define the paths or routes that incoming requests follow within the system, directing them to the appropriate handlers […]

How to Use api.constrains() in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

Odoo facilitates the implementation of validations for recordsets through Python and model constraints. There are primarily two methods to enforce constraints on variants in Odoo: Python and SQL constraints. #odoo17developmentvideos Python constraints in Odoo are typically set using the class decorator api.constrains(), which accepts the field name as arguments and enforces validation conditions on the […]

How to Show Sample Data in Tree and Kanban View in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

In Odoo 17, sample data serves as a valuable resource for users seeking to familiarize themselves with the functionalities and capabilities of the software prior to integrating their own information. This feature offers a simulated environment within the platform, showcasing various modules, workflows, and data structures in a pre-populated format. #odoo17 #odootutorials The users can explore […]

How to Make a Duplicate of Your Odoo 17 Database | Odoo 17 Development Tutorials – CBMS Odoo ERP

In many business scenarios, it becomes essential to conduct test runs or experiments on existing data to ensure the stability and effectiveness of new features or processes. #odoo17 However, directly modifying the original dataset poses risks of unintended consequences or data corruption. To mitigate these risks, it’s common practice to create a duplicate or clone […]