project_task_partner_info/views/task_view.xml

14 lines
763 B
XML

<odoo>
<record id="project_task_partner_info.task_form_inherit" model="ir.ui.view">
<field name="name">project.task.form.inherit</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="project.view_task_form2"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='partner_id']" position="after">
<field name="customer_phone_id" widget="phone" attrs="{'invisible': [('customer_phone_id', '=', False)]}"/>
<field name="customer_mobile_id" widget="phone" attrs="{'invisible': [('customer_mobile_id', '=', False)]}"/>
<field name="customer_email_id" widget="email" attrs="{'invisible': [('customer_email_id', '=', False)]}"/>
</xpath>
</field>
</record>
</odoo>