odoo/addons/auction/wizard/auction_lots_cancel_view.xml

28 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="name_form" model="ir.ui.view">
<field name="name">auction.lots.cancel.form</field>
<field name="model">auction.lots.cancel</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Cancel Payment">
<label string="Are you sure you want to refund this invoice ?"/>
<button icon='gtk-close' special="cancel"
string="Close" />
<button name="cancel" string="Cancel Payment" colspan="1" type="object" icon="gtk-ok" />
</form>
</field>
</record>
<act_window name="Cancel"
res_model="auction.lots.cancel"
src_model="auction.lots"
view_mode="form"
target="new"
key2="client_action_multi"
id="action_auction_lots_cancel"/>
</data>
</openerp>