mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Copyright (C) 2014 Akretion (http://www.akretion.com)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
The licence is in the file __openerp__.py
|
|
-->
|
|
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="banking_export_lcr_wizard_form" model="ir.ui.view">
|
|
<field name="name">banking.export.lcr.wizard.form</field>
|
|
<field name="model">banking.export.lcr.wizard</field>
|
|
<field name="arch" type="xml">
|
|
<form string="LCR File Generation" version="7.0">
|
|
<field name="state" invisible="1"/>
|
|
<group states="finish">
|
|
<field name="total_amount" />
|
|
<field name="nb_transactions" />
|
|
<field name="file" filename="filename" />
|
|
<field name="filename" invisible="True"/>
|
|
</group>
|
|
<footer>
|
|
<button string="Generate" name="create_lcr" type="object"
|
|
class="oe_highlight" states="create"/>
|
|
<button string="Cancel" special="cancel"
|
|
class="oe_link" states="create"/>
|
|
<button string="Validate" name="save_lcr" type="object"
|
|
class="oe_highlight" states="finish"/>
|
|
<button string="Cancel" name="cancel_lcr" type="object"
|
|
class="oe_link" states="finish"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|