mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
17 lines
699 B
XML
17 lines
699 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!-- License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||
|
© 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. -->
|
||
|
|
||
|
<flectra>
|
||
|
<record id="view_personal_information_birthdate_date" model="ir.ui.view">
|
||
|
<field name="name">Birthdate Date field</field>
|
||
|
<field name="model">res.partner</field>
|
||
|
<field name="inherit_id" ref="base.view_partner_form"/>
|
||
|
<field name="arch" type="xml">
|
||
|
<xpath expr="//field[@name='function']" position="after">
|
||
|
<field name="birthdate_date" attrs="{'invisible': [('is_company', '=', True)]}"/>
|
||
|
</xpath>
|
||
|
</field>
|
||
|
</record>
|
||
|
</flectra>
|