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

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <!--
  4. Form view of customer to be able to navigate from the company
  5. to its contacts.
  6. -->
  7. <record id="view_partner_form" model="ir.ui.view">
  8. <field name="name">res.partner.form.inherit.nav2contacts</field>
  9. <field name="model">res.partner</field>
  10. <field name="inherit_id" ref="base.view_partner_form"/>
  11. <field name="priority">90</field>
  12. <field name="type">form</field>
  13. <field name="arch" type="xml">
  14. <xpath expr="//div[hasclass('oe_kanban_details')]/field[@name='name']" position='before'>
  15. <div>
  16. <button name="open_commercial_partner" type="object" class="oe_link">
  17. <field name="name"/>
  18. </button>
  19. </div>
  20. </xpath>
  21. <xpath expr="//div[hasclass('oe_kanban_details')]/field[@name='name']" position='attributes'>
  22. <attribute name="invisible">1</attribute>
  23. </xpath>
  24. </field>
  25. </record>
  26. </odoo>