You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<!--
|
|
Form view of customer to be able to navigate from the company
|
|
to its contacts.
|
|
-->
|
|
<record id="view_partner_form" model="ir.ui.view">
|
|
<field name="name">res.partner.form.inherit.nav2contacts</field>
|
|
<field name="model">res.partner</field>
|
|
<field name="inherit_id" ref="base.view_partner_form"/>
|
|
<field name="priority">90</field>
|
|
<field name="type">form</field>
|
|
<field name="arch" type="xml">
|
|
|
|
<xpath expr="//div[hasclass('oe_kanban_details')]/field[@name='name']" position='before'>
|
|
<div>
|
|
<button name="open_commercial_partner" type="object" class="oe_link">
|
|
<field name="name"/>
|
|
</button>
|
|
</div>
|
|
</xpath>
|
|
<xpath expr="//div[hasclass('oe_kanban_details')]/field[@name='name']" position='attributes'>
|
|
<attribute name="invisible">1</attribute>
|
|
</xpath>
|
|
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|