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.
17 lines
742 B
17 lines
742 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<record id="product_template_only_form_view" model="ir.ui.view">
|
|
<!-- Inherit the product_template form view to add field -->
|
|
<field name='name'>
|
|
product.template.view.form.inherit.product.multi.document
|
|
</field>
|
|
<field name='model'>product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_only_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<!-- Define the position to insert the new elements in the view -->
|
|
<field name="product_tag_ids" position="after">
|
|
<field name="document_ids" widget="many2many_tags"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|