project_account/views/project_sharing_project_task_views.xml

19 lines
842 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="project_sharing_project_task_form_view_account_inherit" model="ir.ui.view">
<field name="name">project.sharing.project.task.form.view.account.inherit</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="project.project_sharing_project_task_view_form"/>
<field name="arch" type="xml">
<field name="partner_id" position="attributes">
<attribute name="context">{'res_partner_search_mode': 'customer'}</attribute>
</field>
<xpath expr="//field[@name='child_ids']/tree/field[@name='partner_id']" position="attributes">
<attribute name="context">{'res_partner_search_mode': 'customer'}</attribute>
</xpath>
</field>
</record>
</odoo>