Hi there,
I have two fields on the same form. "Field_1" and "Field_2".
When field_1 is changed, I need to copy it's content to field_2 on the same form.
How can I achieve that?
Regards
Paulo
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi there,
I have two fields on the same form. "Field_1" and "Field_2".
When field_1 is changed, I need to copy it's content to field_2 on the same form.
How can I achieve that?
Regards
Paulo
Hi,
You can write an onchange function for the filed_1 and update the second field or make the field_2 as the related field of field_1.
@api.onchange('field_1')
def set_field2(self):
self.field_2 = self.field_1
Or
Make the field_2 as related field.
field_2 = fields.Char(string='Test', related='field_1')
Thanks
Thank you @Niyas
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
Mar 24
|
275 | ||
|
1
Oct 23
|
363 | ||
|
2
Oct 23
|
676 | ||
|
2
Aug 23
|
1963 | ||
|
4
Aug 23
|
18248 |