Launchpad automatic translations update.
[odoo/odoo.git] / addons / point_of_sale / wizard / pos_open_statement.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>        
4         <!--  Point of Sale Confirm -->
5         
6         <record id="view_pos_open_statement" model="ir.ui.view">
7             <field name="name">Open Statements</field>
8             <field name="model">pos.open.statement</field>
9             <field name="type">form</field>
10             <field name="arch" type="xml">
11                 <form string="Open Statements" version="7.0">
12                     <header>
13                         <button name="open_statement" type="object" string="Open Registers" class="oe_highlight"/>
14                         or
15                         <button string="Cancel" class="oe_link" special="cancel"/>
16                     </header>
17                     <separator string="Do you want to open cash registers?"/>
18                     <label string="The system will open all cash registers, so that you can start recording payments. We suggest you to control the opening balance of each register, using their CashBox tab."/>
19                 </form>
20             </field>
21         </record>
22         <act_window name="Open Statements"
23             res_model="pos.open.statement"
24             src_model="account.bank.statement"
25             view_mode="form"
26             target="new"
27             key2="client_action_multi"    
28             id="act_pos_open_statement"/>
29
30         <record id="action_pos_open_statement" model="ir.actions.act_window">
31             <field name="name">Open Cash Register</field>
32             <field name="type">ir.actions.act_window</field>
33             <field name="res_model">pos.open.statement</field>
34             <field name="view_type">form</field>
35             <field name="view_mode">form</field>
36             <field name="target">new</field>
37         </record>
38         
39     </data>
40 </openerp>