This question has been flagged
1 Reply
5240 Views

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

 

Avatar
Discard
Best Answer

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

Avatar
Discard
Author

Thank you @Niyas