Which fuction works when pressing "Save" button
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project
- MRP
This question has been flagged
Hello aci aisha,
LIBU has given corret answer. I will improve his answer.
1) When you click for the very first time on save button after providing detail of your record than it will call the save button of orm.
2) when you update the information of of existing it will call the write() method.
These methods defined in base model.
Whenever we are defining any class we are passing one argument in class like
class your_class(models.Model),
class your_class(osv.Model) or class your_class(osv.osv)
whatever version you are using you are passing something in your class this is the base class where all the methods are defined.
Hope this will helps.
Regards,
Anil.
Thanks Anil, But i did'nt knw which fcn call when press "Save" I want to work as when i press second time
write() method is called. you can override the write() method.
When you click on save button it will call create method, and pass all the filled value.
When you modify the record it will call write method. and pass the active record ids and modified field values.
If you want to try it your self you can open a terminal and see log. In that you can see the method call. like
"POST /web/dataset/call_kw/res.partner/create HTTP/1.1" 200
"POST /web/dataset/call_kw/res.partner/write HTTP/1.1" 200
Your model is subclass of orm.Model'. There are methods inclass BaseModel(BaseModel is inherited by Model) which will be call for thesave` record. These methods are
def create(self, cr, user, vals, context=None)
hanks dear Libu,Can we pass values to 2 classes in a single in "Save" button..
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up