Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odgovori
7996 Prikazi

Am using Odoo V8. I created custom module inside the journal entry form and creating one date field when the user comes to enter the date automatically update the date value to the another model form date field. Any idea about updating values of another model within the current form. 

Avatar
Opusti
Best Answer


Hi,

you can use related fields. Another method you can write a code in create and write methods to update the value.

another_model_obj = self.pool.get('another.model').search(cr, uid, [(condition)])
if another_model_obj:
another_model_object = self.pool.get('another.model').browse(cr, uid, another_model_obj, context=None)
another_model_object.date = current_model.date


Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
0
mar. 25
1436
0
jan. 25
3546
1
avg. 23
14901
1
avg. 23
13560
1
jul. 23
10528