How to Make Sure One2many Records Are Deleted When the Parent Record Deleted | ondelete =”cascade” – CBMS Odoo ERP

This video discusses how to make sure one2many records are deleted when parent records are deleted. #odoodevelopmentvideos Video Contents ————————- 00:37 Introduction 00:38 Example 01:03 ondelete = ‘cascade’ 02:11 Delete parent record This can be done using ondelete =”cascade” attribute. We can use ondelete = ‘cascade’, which is a referential action for a foreign key […]

Security in Odoo 15 – Record Rules in Odoo15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

In business, there are different types of records. And it is essential to provide proper security for those records. #securityinodoo15 In Odoo, there are also some security rules. The rules define who can access the following objects. In record rules, we describe some conditions for certain operations. #odoo15developmentvideos #odoo15videos Video Contents ————————- 0:00 Introduction 0:36 […]

Wizards – Defining and Launching in Odoo 15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

This video explains about the Wizards: Defining and Launching in Odoo. Wizards describe interactive sessions with the user (or dialog boxes) through dynamic forms. #odoowizards A wizard is simply a model that extends the class Transient Model instead of Model. Wizard records are not meant to be persistent; they are automatically deleted from the database […]

How to Define a Search View in Odoo15 | Advanced Views in Odoo | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, we are discussing How to define a search View in odoo15 and its use cases in odoo development. #searchviewinodoo Odoo’s search view is perhaps the most popular. It helps you to easily search, filter, or group data based on a condition to get the information you need. #odoodevelopment We will develop a […]

How to Update Client Interface ‘on change’ @api.onchange Odoo 15 | Odoo 15 onchange Method – CBMS Odoo ERP

In this video, it describes about @api.onchange method on the client interface #onchangemethod @api.onchange decorator is used when the field’s value is changed. It can be used to validate data or trigger action. This method can be invoked on pseudo records that contain values of the form. #odoo15developmenttutorials Video Contents: #odoo15videos 0:00 Introduction 1:13 @api.onchange […]

Computed Fields and @api Depends on Odoo 15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, it discusses compute function and how to store value in a field using this functionality and @api.depends operation. Odoo provides compute function which helps to calculate from some other fields. It is just like any other regular field along with an additional argument compute. Video Contents 0:00 Introduction 0:36 Field declaring 1:41 […]