This question has been flagged
6 Replies
8241 Views

Which fuction works when pressing "Save" button

Avatar
Discard
Best Answer

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.

 

 

Avatar
Discard
Author

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.

Best Answer

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 

Avatar
Discard
Best Answer

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)

Avatar
Discard
Author

hanks dear Libu,Can we pass values to 2 classes in a single in "Save" button..