[IMP]: point_of_sale: Translated PoS category name in English and added images for...
[odoo/odoo.git] / addons / point_of_sale / point_of_sale_data.xml
1 <?xml version="1.0" ?>
2 <openerp>
3     <data noupdate="1">
4         <!-- After installation of the module, open the related menu -->
5         <record id="action_client_pos_menu" model="ir.actions.client">
6             <field name="name">Open POS Menu</field>
7             <field name="tag">reload</field>
8             <field name="params" eval="{'menu_id': ref('menu_point_root')}"/>
9         </record>
10         <record id="todo_open_pos_menu" model="ir.actions.todo">
11             <field name="action_id" ref="action_client_pos_menu"/>
12             <field name="type">automatic</field>
13             <field name="sequence">100</field>
14         </record>
15     </data>
16     <data>
17         <record model="pos.config" id="pos_config_main">
18             <field name="name">Main PoS</field>
19         </record>
20     </data>
21
22     <data noupdate="1">
23         <!-- notify all employees of module installation -->
24         <function model="mail.group" name="message_append_note">
25             <!-- ids, subject, body, parent_id=False, type='notification', content_subtype='html' -->
26             <value eval="[ref('mail.group_all_employees')]"/>
27             <value>Module Point of Sale has been installed</value>
28             <value>Encode sale orders, register payments, compute money to return, create invoices, and manage refunds of former sales through a specific, web-based, touch-screen user interface.
29
30 If you install the PoS proxy, you will be able to interface OpenERP with retail materials; barcode scanners, printers, cash registers, weighing machine, credit card payments.</value>
31         </function>
32     </data>
33 </openerp>
34