mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
The commission field having been extracted out of the module, trying to show it in the Account Statement view would prevent that view from working properly.
31 lines
1.3 KiB
XML
31 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
|
|
<record id="statement_importer_view_form" model="ir.ui.view">
|
|
<field name="name">account.statement.profile.view</field>
|
|
<field name="model">account.statement.profile</field>
|
|
<field name="inherit_id" ref="account_statement_ext.statement_importer_view_form"/>
|
|
<field name="type">form</field>
|
|
<field name="arch" type="xml">
|
|
<field name="bank_statement_prefix" position="after">
|
|
<separator colspan="4" string="Import related infos"/>
|
|
<field name="launch_import_completion"/>
|
|
<field name="last_import_date"/>
|
|
<field name="import_type"/>
|
|
<button name="%(account_statement_base_import.statement_importer_action)d"
|
|
string="Import Bank Statement"
|
|
type="action" icon="gtk-ok"
|
|
colspan = "2"/>
|
|
<group attrs="{'invisible': [('rec_log', '=', False)]}">
|
|
<separator colspan="4" string="Historical Import Logs"/>
|
|
<field name="rec_log" colspan="4" nolabel="1" />
|
|
</group>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|