Ir al contenido
Menú
Se marcó esta pregunta
6 Respuestas
9366 Vistas

Which fuction works when pressing "Save" button

Avatar
Descartar
Mejor respuesta

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
Descartar
Autor

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.

Mejor respuesta

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
Descartar
Mejor respuesta

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
Descartar
Autor

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