[MERGE] addons 16 survey
[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="arch" type="xml">
10                 <group name="procurement" position="inside">
11                     <group string="Manufacturer">
12                         <field name="manufacturer" />
13                         <field name="manufacturer_pname"/>
14                         <field name="manufacturer_pref"/>
15                     </group>
16                     <group string="Attributes">
17                         <field name="attribute_ids" colspan="4" nolabel="1">
18                             <tree string="Product Attributes" editable="bottom">
19                                 <field name="name"/>
20                                 <field name="value"/>
21                             </tree>
22                         </field>
23                     </group>
24                 </group>
25             </field>
26         </record>
27
28         <record model="ir.ui.view" id="product_manufacturer_attribute_tree_view">
29             <field name="name">product.manufacturer.attribute.tree</field>
30             <field name="model">product.manufacturer.attribute</field>
31             <field name="arch" type="xml">
32                 <tree string="Product Attributes" editable="bottom">
33                     <field name="name"/>
34                     <field name="value"/>
35                 </tree>
36             </field>
37         </record>
38         <record model="ir.ui.view" id="product_manufacturer_attribute_form_view">
39             <field name="name">product.manufacturer.attribute.form</field>
40             <field name="model">product.manufacturer.attribute</field>
41             <field name="arch" type="xml">
42                 <form string="Product Template Name" version="7.0">
43                     <group>
44                         <field name="name"/>
45                         <field name="value"/>
46                     </group>
47                 </form>
48             </field>
49         </record>
50
51     </data>
52 </openerp>
53