Description:
In this video, we are discussing How to override the create, write and unlink methods in odoo15. Create() function in odoo is used to create a new record in a model. Overriding a create function in odoo will help us to customize the working of the create function. Similarly, for write() and unlink() functions too.
When we write() a record in a model if we need to make any customization and while deleting a record if we need any customization we can make use of the write() and unlink() functions respectively.