-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.xml
29 lines (28 loc) · 1.34 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
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<tryton>
<data>
<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>
<record model="ir.ui.view" id="product_view_tree">
<field name="model">product.product</field>
<field name="inherit" ref="product.product_view_tree" />
<field name="name">product_tree</field>
</record>
<!-- Product Template View and Actions -->
<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="template_tree_view">
<field name="model">product.template</field>
<field name="inherit" ref="product.template_view_tree" />
<field name="name">template_tree</field>
</record>
<menuitem name="Product Templates" id="product.menu_template" parent="product.menu_main_product" />
<menuitem name="Products" id="product.menu_product" parent="product.menu_template" />
</data>
</tryton>