[MERGE] addons: added groups when quick creating user in various addons.
[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     </data>
31 </openerp>