-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathproduct.xml
25 lines (25 loc) · 1.09 KB
/
product.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0"?>
<tryton>
<data>
<record model="ir.ui.view" id="template_view_form">
<field name="model">product.template</field>
<field name="inherit" ref="product.template_view_form" />
<field name="name">template_form</field>
</record>
<record model="ir.ui.view" id="variation_attributes_view_form">
<field name="model">product.variation_attributes</field>
<field name="type">form</field>
<field name="name">variation_attributes_form</field>
</record>
<record model="ir.ui.view" id="variation_attributes_view_tree">
<field name="model">product.variation_attributes</field>
<field name="type">tree</field>
<field name="name">variation_attributes_tree</field>
</record>
<record model="ir.ui.view" id="product_view_form">
<field name="model">product.product</field>
<field name="inherit" ref="product.product_view_form" />
<field name="name">product_form</field>
</record>
</data>
</tryton>