Merge branch 'master' of https://github.com/odoo/odoo
[odoo/odoo.git] / addons / account_accountant / account_accountant_data.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4         <!-- Rename root menu "Accounting" -->
5         <!-- Top menu item -->
6         <menuitem name="Accounting"
7             id="account.menu_finance"/>
8         <menuitem id="account.menu_account_config" name="Accounting" parent="base.menu_config" sequence="3"/>
9
10     </data>
11
12     <data noupdate="1">
13         <!-- After installation of the module, open the related menu -->
14         <record id="action_client_account_menu" model="ir.actions.client">
15             <field name="name">Open Accounting Menu</field>
16             <field name="tag">reload</field>
17             <field name="params" eval="{'menu_id': ref('account.menu_finance')}"/>
18         </record>
19         <record id="base.open_menu" model="ir.actions.todo">
20             <field name="action_id" ref="action_client_account_menu"/>
21             <field name="state">open</field>
22         </record>
23
24         <!-- Notify all employees of module installation -->
25         <record model="mail.message" id="module_install_notification">
26             <field name="model">mail.group</field>
27             <field name="res_id" ref="mail.group_all_employees"/>
28             <field name="type">notification</field>
29             <field name="subtype_id" ref="mail.mt_comment"/>
30             <field name="subject">Accounting and Finance application installed!</field>
31             <field name="body"><![CDATA[<p>With Odoo's accounting, you get instant access to your financial data, and can setup analytic accounting, forecast taxes, control budgets, easily create and send invoices, record bank statements, etc.</p>
32 <p>The accounting features are fully integrated with other Odoo applications to automate all your processes: creation of customer invoices, control of supplier invoices, point-of-sale integration, automated follow-ups, etc.</p>]]></field>
33         </record>
34     </data>
35 </openerp>