summaryrefslogtreecommitdiff
path: root/addons/point_of_sale/wizard/pos_details.xml
blob: 6a10896b6fde76ac1919165439cf5230ee14d74b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<odoo>
        <record id="view_pos_details_wizard" model="ir.ui.view">
            <field name="name">pos.details.wizard.form</field>
            <field name="model">pos.details.wizard</field>
            <field name="arch" type="xml">
                <form string="Sales Details">
                    <group>
                        <field name="start_date"/>
                        <field name="end_date"/>
                    </group>
                    <group>
                        <field name="pos_config_ids" mode="tree" colspan="4" nolabel="1" />
                    </group>
                    <footer>
                        <button name="generate_report" string="Print" type="object" class="btn-primary"/>
                        <button string="Cancel" class="btn-secondary" special="cancel" />
                    </footer>
                </form>
            </field>
        </record>

</odoo>