Mixin Classes in Odoo 16 | How to Extend Models Using Mixin Classes | Odoo 16 Development Tutorials – CBMS Odoo ERP

Extending models using mixin classes in Odoo 16 is a technique used to add custom fields, methods, and behavior to existing Odoo models without modifying their original code. Mixin classes in Odoo 16 are Python classes that contain reusable code that can be added to multiple models.To extend an Odoo model using a mixin class, […]

How to Extend Models Using Mixin Classes in Odoo 15 | Odoo Mixins | Odoo 15 Development Tutorial – CBMS Odoo ERP

Sometimes there is a particular feature that we want to be able to add to several different models. #odoodevelopmentvideos Video Contents 00:00 Introduction 02:16 Using of Mixing Class 03:44 Result At that time we just used to rewrite the code to all models that are not an effective way. #odoo15videos Odoo provides the Abstract model […]