view_account_invoice_refund.xml 1.01 KB
Newer Older
François C. committed
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
<?xml version="1.0"?>
<odoo>

    <record model="ir.ui.view" id="view_account_invoice_refund_capital_subscription_form">
        <field name="model">account.invoice.refund</field>
        <field name="arch" type="xml">
            <form>
                <group>
                     <group>
                         <field name="refund_only" invisible="1"/>
                         <field name="filter_refund" invisible="1" widget="radio"/>
                         <field name="date_invoice"/>
                         <field name="date" groups="base.group_no_one"/>
                         <field name="refund_quantity"/>
                         <field name="description"/>
                     </group>
                </group>
                <footer>
                    <button string='Create Refund' name="invoice_refund" type="object" class="btn-primary"/>
                    <button string="Cancel" class="btn-default" special="cancel"/>
                </footer>
           </form>

        </field>
    </record>

</odoo>