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.
|
|
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
Copyright 2017 Pedro M. Baeza <pedro.baeza@tecnativa.com> License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). --> <odoo>
<record id="view_partner_form" model="ir.ui.view"> <field name="model">res.partner</field> <field name="inherit_id" ref="base.view_partner_form"/> <field name="arch" type="xml"> <xpath expr="//notebook[1]"> <page name="custom_info" string="Custom Information" groups="base_custom_info.group_partner"> <group> <group> <field name="custom_info_template_id" options='{"no_quick_create": True}' /> </group> <field name="custom_info_ids" colspan="4" nolabel="1" context="{'embed': True, 'tree_view_ref': 'base_custom_info.custom_info_value_tree_editable'}" /> </group> </page> </xpath> </field> </record>
</odoo>
|