[FIX] Autofocus on create mode
[odoo/odoo.git] / addons / point_of_sale / point_of_sale_data.xml
1 <?xml version="1.0" ?>
2 <openerp>
3     <data>
4         <record model="pos.config" id="pos_config_main">
5             <field name="name">Main PoS</field>
6         </record>
7     </data>
8
9     <data noupdate="1">
10         <!-- notify all employees of module installation -->
11         <function model="mail.group" name="message_append_note">
12             <!-- ids, subject, body, parent_id=False, type='notification', content_subtype='html' -->
13             <value eval="[ref('mail.group_all_employees')]"/>
14             <value>Module Point of Sale has been installed</value>
15             <value>Encode sale orders, register payments, compute money to return,
16                 create invoices, and manage refunds of former sales through a
17                 specific, web-based, user interface.
18
19                 Simply click on the top menu "Point of Sale" to launch its
20                 interface.  You can configure your point of sale and perform
21                 backend operations in the menu "PoS Backend".
22             </value>
23         </function>
24     </data>
25 </openerp>
26