The ability to drag and drop a created purchase order PDF from the Odoo 18 purchase module into the Odoo sales module is a feature that allows for a more streamlined and efficient workflow when managing both purchasing and selling activities within the same system. Here are the primary purposes of this feature: – Quick […]
In this video, we have discussed how to super create and write functions in odoo 17. 1. The Create method is called when a new record is created, we can additionally add features while creating a record by supering the create function. 2. The write method is called when an existing record is being edited, […]
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, […]
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. […]
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 […]
If a method has more than one super method and doesn’t want to execute any functionalities of those super methods, then we can override all super methods of that method. #odoo14 #overridemethods #odootechnicalvideos #Override #Super #Method #Odoo #Odoo
In this video, we will be discussing how we can override a method in Odoo 14 and the usage of the super method. By overriding a method we can change the implementation of that method, which is redefining that method. By using the super method we can override a method to change its default behavior […]