April 2016
Beginner to intermediate
400 pages
9h 16m
English
So far, we have only looked into changing forms depending on the user's groups (the groups attribute on elements and the groups_id field on inherited views), but nothing more. This recipe will show you how to change forms based on the content of some fields in it.
<field name="parent_id"
attrs="{'invisible': [('is_company', '=', True)],
'required': [('is_company', '=', False)]}" /><field name="is_company" invisible="True" />
This will make the field parent_id invisible if the partner is a company, and required if it's not a company.
The attrs attribute contains a dictionary ...