[ADD] account_bank_statement_import_split: split statements during import

This commit is contained in:
Alexey Pelykh
2019-11-12 08:26:19 +00:00
parent e856588167
commit 38f656cf37
9 changed files with 475 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2019 Brainbean Apps (https://brainbeanapps.com)
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
-->
<odoo>
<record id="account_bank_statement_import_view" model="ir.ui.view">
<field name="model">account.bank.statement.import</field>
<field name="inherit_id" ref="account_bank_statement_import.account_bank_statement_import_view"/>
<field name="arch" type="xml">
<xpath expr="//ul[@id='statement_format']" position="after">
<p>Please select how you'd like to split the imported statement file:</p>
<field name="import_mode" widget="radio" required="1"/>
</xpath>
</field>
</record>
</odoo>