[IMP] append note
[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         <!-- 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>Manage your employee's expenses, with validations by employee manager and accountant, creation and payment of invoices.
9
10 This module also uses the analytic accounting and is compatible with the invoice on timesheet module so that you will be able to automatically re-invoice your customer's expenses if your work by project.</value>
11             <value>Module Expenses Management has been installed</value>
12         </function>
13
14         <!-- Resource: product.uom.categ -->
15         <record id="cat_expense" model="product.category">
16             <field name="parent_id" ref="product.product_category_all"/>
17             <field name="name">Expenses</field>
18         </record>
19
20     </data>
21 </openerp>