[MERGE]: Merge with latest trunk-addons
[odoo/odoo.git] / addons / hr_expense / hr_expense_data.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data noupdate="1">
4         <!--
5     Resource: product.uom.categ
6     -->
7         <record id="cat_expense" model="product.category">
8             <field name="parent_id" ref="product.product_category_0"/>
9             <field name="name">Expenses</field>
10         </record>
11
12         <!-- notify all employees of module installation -->
13         <function model="mail.group" name="message_append_note">
14             <!-- ids, subject, body, parent_id=False, type='notification', content_subtype='html' -->
15             <value eval="[ref('mail.group_all_employees')]"/>
16             <value>Module Expenses Management has been installed</value>
17             <value>Manage your employee's expenses, with validations by employee
18                 manager and accountant, creation and payment of invoice.
19
20                 This module also uses the analytic accounting and is compatible
21                 with the invoice on timesheet module so that you will be able to
22                 automatically re-invoice your customer's expenses if your work
23                 by project.
24             </value>
25         </function>
26
27     </data>
28 </openerp>