Hello, how I can define multiple conditions in attrs of a field? I need hide field_name_3 when field_name_1 AND field_name_2 are empty. I'm trying to use following condition:
<field name="field_name_3" attrs="{'invisible':[('filed_name_1','=',False),('fieled_name_2','=',False)]}"/>
But it works like the OR.