Browse Source

[FIX] partner_firstname: name, firstname and lastname only required if adress 'type' is contact

14.0
Marcel Much 7 years ago
committed by Luis Torres
parent
commit
0d4321323c
  1. 18
      partner_firstname/views/res_partner.xml

18
partner_firstname/views/res_partner.xml

@ -17,10 +17,12 @@
<group attrs="{'invisible': [('is_company', '=', True)]}">
<field name="lastname" attrs=
"{'required': [('firstname', '=', False),
('is_company', '=', False)]}"/>
('is_company', '=', False),
('type', '=', 'contact')]}"/>
<field name="firstname" attrs=
"{'required': [('lastname', '=', False),
('is_company', '=', False)]}"/>
('is_company', '=', False),
('type', '=', 'contact')]}"/>
</group>
</xpath>
</data>
@ -45,10 +47,12 @@
<group attrs="{'invisible': [('is_company', '=', True)]}">
<field name="lastname" attrs=
"{'required': [('firstname', '=', False),
('is_company', '=', False)]}"/>
('is_company', '=', False),
('type', '=', 'contact')]}"/>
<field name="firstname" attrs=
"{'required': [('lastname', '=', False),
('is_company', '=', False)]}"/>
('is_company', '=', False),
('type', '=', 'contact')]}"/>
</group>
</div>
</xpath>
@ -69,10 +73,12 @@
<group attrs="{'invisible': [('is_company', '=', True)]}">
<field name="lastname" attrs=
"{'required': [('firstname', '=', False),
('is_company', '=', False)]}"/>
('is_company', '=', False),
('type', '=', 'contact')]}"/>
<field name="firstname" attrs=
"{'required': [('lastname', '=', False),
('is_company', '=', False)]}"/>
('is_company', '=', False),
('type', '=', 'contact')]}"/>
</group>
</div>
</xpath>

Loading…
Cancel
Save