Browse Source

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

pull/663/head
Marcel Much 7 years ago
committed by Jairo Llopis
parent
commit
8c11abc72d
  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