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

This video is about the overriding delete function in Odoo15. The function which is executing while we delete a record is the unlink method of the model. #odoo15videos If we want to include any additional functionality while we delete a record we will need to override the corresponding models’ unlink method. #odoo15developmentvideos #odootechnicalvideos Connect With […]

How to Create a Field Mandatory in Odoo 15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, we’ll be discussing how we can create a field mandatory using python and XML methods. #odooxml Mandatory fields are fields that are required to be given value while saving a record, ie these fields must have a value specified in its place while saving the record. #odoo15developmentvideos #odoo15tutorials Connect With Us: ———————— […]

How to Make a Field read-only in Odoo | What Is readonly in Odoo? | Odoo 15 Development Tutorials – CBMS Odoo ERP

Readonly fields are fields that cannot be edited from the front-end UI. These fields will be having a default value that will not be able to be edited. #odoodevelopmentvideos #odoo15videos In this video, we’ll be discussing how we can create a field read-only using python and XML methods. #odooxml Connect With Us: ———————— ➡️Website: ➡️Email […]

How to Create a Toggle Button in Odoo | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, we’ll be discussing how we can create such a toggle button in our view. #odoodevelopmentvideos Toggle buttons are buttons that allow the user to select between two states or two values. In Odoo, basically, the toggle buttons are usually specified for the boolean fields. #odoodevelopmenttutorials #odoo15videos Connect With Us: ———————— ➡️Website: ➡️Email […]

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 Use name_search function in Odoo 15 | name_search in Odoo | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, we are discussing how to define a name_search function in Odoo and its use cases in Odoo development. Name search function is an Odoo ORM method that is responsible for searching the specific records by some field values in a relational field. This is used for example to provide suggestions based on […]

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