[IMP] crm, account: improve typo in module installation notification
[odoo/odoo.git] / addons / crm / crm_data.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data noupdate="1">
4         <record model="crm.case.channel">
5             <field name="name">website</field>
6         </record>
7         <record model="crm.case.channel">
8             <field name="name">phone</field>
9         </record>
10         <record model="crm.case.channel">
11             <field name="name">direct</field>
12         </record>
13         <record model="crm.case.channel">
14             <field name="name">email</field>
15         </record>
16         <record model="crm.case.section" id="section_sales_department">
17             <field name="name">Sales Department</field>
18             <field name="code">Sales</field>
19         </record>
20
21         <!-- notify all employees of module installation -->
22         <function model="mail.group" name="message_append_note">
23             <!-- ids, subject, body, parent_id=False, type='notification', content_subtype='html' -->
24             <value eval="[ref('mail.group_all_employees')]"/>
25             <value>Module CRM has been installed</value>
26             <value>From the top menu Sales, manage your sales pipeline: leads,
27                 opportunities, meetings, phone calls, and customers.  OpenERP
28                 ensures that all cases are successfully tracked by all parties.
29                 It can automatically send reminders, escalate requests, trigger
30                 specific methods and lots of other actions based on your own
31                 enterprise rules.
32
33                 In the Sales settings, you can configure an email gateway to
34                 automatically create leads from messages sent on a particular
35                 email address.
36
37                 To manage quotations and sale orders, install the module "Sales
38                 Management".  With this module, you will be able to create
39                 quotations directly from opportunities.
40             </value>
41         </function>
42     </data>
43 </openerp>