[REF] purchase: search view of purchase order and form view of merge order wizard
[odoo/odoo.git] / addons / mrp / mrp_installer.xml
1 <openerp>
2   <data>
3     <record id="view_mrp_installer" model="ir.ui.view">
4       <field name="name">mrp.installer.view</field>
5       <field name="model">mrp.installer</field>
6       <field name="type">form</field>
7       <field name="inherit_id" ref="base.res_config_installer"/>
8       <field name="arch" type="xml">
9         <data>
10           <form position="attributes">
11             <attribute name="string">MRP Modules Installation</attribute>
12           </form>
13
14           <separator string="title" position="attributes">
15             <attribute name="string">Configure Your Manufacturing</attribute>
16           </separator>
17           <xpath expr="//label[@string='description']"
18                  position="attributes">
19             <attribute name="string">After having installed the core manufacturing application, you can extend it with a few more depending on the needs of your organization</attribute>
20           </xpath>
21           <group colspan="8">
22             <separator string="Manufacturing Resource Planning" colspan="4"/>
23             <field name="stock_location"/>
24             <field name="mrp_jit"/>
25             <field name="mrp_operations"/>
26             <field name="mrp_subproduct"/>
27             <field name="mrp_repair"/>
28           </group>
29         </data>
30       </field>
31     </record>
32
33     <record id="action_mrp_installer" model="ir.actions.act_window">
34       <field name="name">MRP Modules Installation</field>
35       <field name="type">ir.actions.act_window</field>
36       <field name="res_model">mrp.installer</field>
37       <field name="view_id" ref="view_mrp_installer"/>
38       <field name="view_type">form</field>
39       <field name="view_mode">form</field>
40       <field name="target">new</field>
41     </record>
42
43     <record id="mrp_installer_todo" model="ir.actions.todo">
44       <field name="action_id" ref="action_mrp_installer"/>
45       <field name="sequence">3</field>
46     </record>
47   </data>
48 </openerp>