[IMP] sale order line invisible type
[odoo/odoo.git] / addons / mail / data / mail_group_data.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data noupdate="1">
4
5         <record model="mail.group" id="group_sales">
6             <field name="name">Sales</field>
7             <field name="description">Discussion about best sales practices and deals.</field>
8         </record>
9         <record model="mail.group" id="group_all_employees">
10             <field name="name">All Employees</field>
11             <field name="group_ids" eval="[(4, ref('base.group_user'))]"/>
12             <field name="description">Discussion about best sales practices and deals.</field>
13         </record>
14
15         <!-- notify all employees of module installation -->
16         <function model="mail.group" name="message_append_note">
17             <!-- ids, subject, body, parent_id=False, type='notification', content_subtype='html' -->
18             <value eval="[ref('mail.group_all_employees')]"/>
19             <value>Welcome to OpenERP!</value>
20             <value>Your homepage is a summary of messages you received and key information about documents you follow.
21
22 The top menu bar contains all applications you installed. You can use this &lt;i&gt;Settings&lt;/i&gt; menu to install more applications, activate others features or give access to new users.
23
24 To setup your preferences (name, email signature, avatar), click on the top right corner.</value>
25         </function>
26
27     </data>
28 </openerp>