[TYPO] Set the right category for the Point Of Sale
[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         <function model="mail.group" name="message_append_note">
6             <!-- ids, subject, body, parent_id=False, type='notification', content_subtype='html' -->
7             <value eval="[ref('mail.group_all_employees')]"/>
8             <value>Module MRP has been installed</value>
9             <value>Manage your manufacturing process in OpenERP by defining bill
10                 of materials (BoM), routings and work centers.  This module
11                 supports complete integration and planification of stockable
12                 goods, consumable, and services.
13
14                 From the Manufacturing Settings, you can choose to compute
15                 production schedules periodically or just-in-time.
16             </value>
17         </function>
18         
19         <record id="sequence_mrp_prod_type" model="ir.sequence.type">
20             <field name="name">Production order</field>
21             <field name="code">mrp.production</field>
22         </record>
23         
24         <record id="sequence_mrp_prod" model="ir.sequence">
25             <field name="name">Production order</field>
26             <field name="code">mrp.production</field>
27             <field name="prefix">MO/</field>
28             <field name="padding">5</field>
29             <field name="number_next">1</field>
30             <field name="number_increment">1</field>
31         </record>
32         
33     </data>
34 </openerp>