mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
59 lines
1.6 KiB
XML
59 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
<record id="banking_export_clieop_wizard_view" model="ir.ui.view">
|
|
<field name="name">banking.export.clieop.wizard.view</field>
|
|
<field name="model">banking.export.clieop.wizard</field>
|
|
<field name="type">form</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Client Opdrachten Export">
|
|
<field name="state" invisible="True"/>
|
|
<group states="create">
|
|
<separator colspan="4" string="Processing Details" />
|
|
<field name="batchtype" />
|
|
<field name="execution_date" />
|
|
<field name="test" />
|
|
<separator colspan="4" string="Reference for further communication" />
|
|
<field name="reference" colspan="2" />
|
|
<separator colspan="4" string="Additional message for all transactions" />
|
|
<field name="fixed_message" />
|
|
<newline/>
|
|
<button icon="gtk-close"
|
|
special="cancel"
|
|
string="Cancel"
|
|
/>
|
|
<button icon="gtk-ok"
|
|
string="Create"
|
|
name="create_clieop"
|
|
type="object"
|
|
/>
|
|
</group>
|
|
<group states="finish">
|
|
<field name="filetype" />
|
|
<field name="identification" />
|
|
<field name="total_amount" />
|
|
<field name="check_no_accounts" />
|
|
<field name="no_transactions" />
|
|
<field name="prefered_date" />
|
|
<field name="testcode" />
|
|
<newline/>
|
|
<field name="file_id" />
|
|
<field name="file" />
|
|
<newline/>
|
|
<button icon="gtk-close"
|
|
string="Cancel"
|
|
name="cancel_clieop"
|
|
type="object"
|
|
/>
|
|
<button icon="gtk-ok"
|
|
string="Finish"
|
|
name="save_clieop"
|
|
type="object"
|
|
/>
|
|
</group>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</openerp>
|