summaryrefslogtreecommitdiff
path: root/addons/stock/wizard/stock_quantity_history.xml
blob: 2b7fe150d95cc46f0e685159846f6ae5659007ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <record id="view_stock_quantity_history" model="ir.ui.view">
        <field name="name">Inventory Report at Date</field>
        <field name="model">stock.quantity.history</field>
        <field name="arch" type="xml">
            <form string="Choose your date">
                <group>
                    <field name="inventory_datetime"/>
                </group>
                <footer>
                    <button name="open_at_date" string="Confirm" type="object" class="btn-primary"/>
                    <button string="Cancel" class="btn-secondary" special="cancel" />
                </footer>
            </form>
        </field>
    </record>
</odoo>