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