This question has been flagged
1 Reply
2334 Views

How can I make a field (M2o) invisible if it doesn't contain any values?

Avatar
Discard
Best Answer

Hi,
If your Many2one field is ‘partner_id’. Then you can set ‘invisible’ attribute inside ‘attrs’ like this in your xml file.

<field name="partner_id" attrs="{'invisible':[('partner_id', '=', False)]}"/>

Regards

Avatar
Discard