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

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

This video explains how to override the delete function in odoo16. The function which gets executed on deleting a record is the unlink method of the model. #odoo16 #odoodevelopment By overriding the unlink method of the corresponding model we can even add additional functionality while we delete a record. #odootutorials Connect With Us: —————— ➡️ […]

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 Super a Function in Odoo 15 | super() function | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, we are discussing how to super a function in odoo15. super() function is used in odoo to change the workflow of an existing function in odoo. #odoo15technicalvideos Video Contents 00:06 Introduction 01:15 Super a function in odoo In some cases, we will have to make some customization while executing a predefined function. […]

How to Override Create, Write, Unlink Methods in Odoo15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

In this video, we are discussing How to override the create, write and unlink methods in odoo15. #odoo15developmentvideos Video Contents ————————- 00:06 Introduction 00:40 Override the Create, Write & Unlink Methods Create() function in odoo is used to create a new record in a model. Overriding a create function in odoo will help us to […]

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