[IMP] product: all left menu item became product.template's action
[odoo/odoo.git] / addons / mrp / mrp_data.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data noupdate="1">
4         <!-- notify all employees of module installation -->
5         <record model="mail.message" id="module_install_notification">
6             <field name="model">mail.group</field>
7             <field name="res_id" ref="mail.group_all_employees"/>
8             <field name="type">notification</field>
9             <field name="subtype_id" ref="mail.mt_comment"/>
10             <field name="subject">MRP application installed!</field>
11             <field name="body"><![CDATA[<p>Manage your manufacturing process with OpenERP by defining your bills of materials (BoM), routings and work centers.</p><p>
12 This application supports complete integration and production scheduling for stockable goods, consumables, and services.</p>
13 <p>From the Manufacturing Settings, you can choose to compute production schedules periodically or just-in-time.</p>]]></field>
14         </record>
15         
16         <record id="sequence_mrp_prod_type" model="ir.sequence.type">
17             <field name="name">Production order</field>
18             <field name="code">mrp.production</field>
19         </record>
20         
21         <record id="sequence_mrp_prod" model="ir.sequence">
22             <field name="name">Production order</field>
23             <field name="code">mrp.production</field>
24             <field name="prefix">MO</field>
25             <field name="padding">5</field>
26             <field name="number_next">1</field>
27             <field name="number_increment">1</field>
28         </record>
29
30         <!--
31              Procurement rules and routes
32         -->
33
34         <record id="route_warehouse0_manufacture" model='stock.location.route'>
35             <field name="name">Manufacture</field>
36             <field name="sequence">5</field>
37         </record>
38
39         <!-- Enable the manufacturing in warehouse0 -->
40         <record id='stock.warehouse0' model='stock.warehouse'>
41             <field name='manufacture_to_resupply' eval='True'/>
42         </record>
43
44     </data>
45 </openerp>