mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
migration script
and a module that takes care of saving imported files (+migration)
This commit is contained in:
committed by
Alexis de Lattre
parent
2908fb0f22
commit
64a21a9f10
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
<record id="view_bank_statement_form" model="ir.ui.view">
|
||||
<field name="model">account.bank.statement</field>
|
||||
<field name="inherit_id" ref="account.view_bank_statement_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//page[@string='Transactions']" position="after">
|
||||
<page string="Imported file" attrs="{'invisible': [('import_file', '=', False)]}">
|
||||
<group>
|
||||
<group>
|
||||
<field name="import_file" />
|
||||
</group>
|
||||
<group>
|
||||
<field name="import_date" />
|
||||
<field name="import_user" />
|
||||
</group>
|
||||
</group>
|
||||
<field name="import_log" />
|
||||
</page>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</openerp>
|
||||
Reference in New Issue
Block a user