How to Define Compute Fields & Compute Functions in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

In this video, we will explore how to create and use compute fields and compute functions in Odoo 17. Compute fields are special fields whose values are computed dynamically based on other fields or data in the system. This feature allows you to create fields that automatically update their values when related fields change, ensuring […]

How to Super Create/Write Functions in Odoo 16 | Odoo 16 Development Tutorials – CBMS Odoo ERP

This video describes how to super-create and write functions in Odoo 16. a) create() method is called when a new record is created in Odoo whereas b) write() method is called when an existing record is being edited. Supering the create() method helps to add any feature when a record is being created. #odootutorials Similarly, […]

How to Use name_get() function in Odoo 15 | name_get() in Odoo | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, we are discussing how to define a name_get() function in odoo 15 and its use cases in odoo development Video Contents ———————— 0:00 Introduction 1:10 Define a name_get function In Odoo ERP whenever we make a quotation, sale order, or in any case when we type a product name, we can see […]

How to Super Create/Write Functions in Odoo | Odoo 15 Technical Videos – CBMS Odoo ERP

This video describes how to call a super function to create and write functions in odoo. Which helps to override the default function of create and write. Also, @api.model decorator can be used for this. after calling @api.model decorator which defines a function and passes the values for create/write Video Contents ————————- 0:00 Introduction 0:22 […]

How to Define Compute Fields and Compute Functions in Odoo15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, we are discussing How to define compute fields and compute functions in odoo15 and its use cases in odoo development. #odoo15developmentvideos In Odoo, sometimes we may require special types of fields having values calculated from other fields. We may require calculated values from the same records or in the related records. #odoo15technicalvideos […]