[TYPO] Set the right category for the Point Of Sale
[odoo/odoo.git] / addons / product_manufacturer / product_manufacturer_view.xml
1 <?xml version="1.0" ?>
2 <openerp>
3     <data>
4
5         <record model="ir.ui.view" id="view_product_form_expiry">
6             <field name="name">product.normal.form</field>
7             <field name="model">product.product</field>
8             <field name="inherit_id" ref="product.product_normal_form_view" />
9             <field name="type">form</field>
10             <field name="arch" type="xml">
11                 <notebook position="inside">
12                     <page string="Manufacturer">
13                         <group string="Manufacturer">
14                             <field name="manufacturer" />
15                             <field name="manufacturer_pname"/>
16                             <field name="manufacturer_pref"/>
17                         </group>
18                         <group string="Attributes">
19                             <field name="attribute_ids" colspan="4" nolabel="1">
20                                 <tree string="Product Attributes" editable="bottom">
21                                     <field name="name"/>
22                                     <field name="value"/>
23                                 </tree>
24                             </field>
25                         </group>
26                     </page>
27                 </notebook>
28             </field>
29         </record>
30
31         <record model="ir.ui.view" id="product_manufacturer_attribute_tree_view">
32             <field name="name">product.manufacturer.attribute.tree</field>
33             <field name="model">product.manufacturer.attribute</field>
34             <field name="type">tree</field>
35             <field name="arch" type="xml">
36                 <tree string="Product Attributes" editable="bottom">
37                     <field name="name"/>
38                     <field name="value"/>
39                 </tree>
40             </field>
41         </record>
42         <record model="ir.ui.view" id="product_manufacturer_attribute_form_view">
43             <field name="name">product.manufacturer.attribute.form</field>
44             <field name="model">product.manufacturer.attribute</field>
45             <field name="type">form</field>
46             <field name="arch" type="xml">
47                 <form string="Product Template Name" version="7.0">
48                     <group>
49                         <field name="name"/>
50                         <field name="value"/>
51                     </group>
52                 </form>
53             </field>
54         </record>
55
56     </data>
57 </openerp>
58