Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
2 Відповіді
7986 Переглядів

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. 

Аватар
Відмінити
Найкраща відповідь


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


Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
бер. 25
1430
0
січ. 25
3531
1
серп. 23
14885
change password Вирішено
1
серп. 23
13546
1
лип. 23
10523