summaryrefslogtreecommitdiff
path: root/addons/account/wizard/pos_box.xml
blob: 975b7fd5171c858678c53930d5da03962f0e7b08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
    <data>
        <record model="ir.ui.view" id="cash_box_out_form">
            <field name="name">cash_box_out</field>
            <field name="model">cash.box.out</field>
            <field name="arch" type="xml">
                <form string="Take Money In/Out">
                    <separator string="Describe why you put/take money from the cash register:"/>
                    <group>
                        <field name="name" class="oe_inline"/>
                        <field name="amount" class="oe_inline"/>
                    </group>

                    <footer>
                        <button name="run" string="Take Money In/Out" type="object" class="btn-primary"/>
                        <button class="btn-secondary" special="cancel" string="Cancel" />
                    </footer>
                </form>
            </field>
        </record>

        <record id="action_cash_box_out" model="ir.actions.act_window">
            <field name="name">Take Money In/Out</field>
            <field name="res_model">cash.box.out</field>
            <field name="view_mode">form</field>
            <field name="target">new</field>
        </record>
    </data>
</odoo>