Import account_bank_statement_import by Odoo SA

Import code just before commit 9ba8734f15e1a292ca27b1a026e8366a91b2a8c9
that moved the module account_bank_statement_import to Odoo Enterprise
Only modifications :
- add author (Odoo SA) and license (LGPL) keys in manifest
- add copyright headers Odoo SA all main files
This commit is contained in:
Odoo SA
2020-11-16 17:22:26 +01:00
committed by Pedro M. Baeza
parent 86d9f15cdc
commit b47eb66eb0
90 changed files with 51400 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?xml version="1.0" ?>
<!--
Copyright 2004-2020 Odoo S.A.
Licence LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0).
-->
<odoo>
<data>
<record id="account_bank_statement_import_journal_creation_view" model="ir.ui.view">
<field name="name">Journal Creation</field>
<field name="model">account.bank.statement.import.journal.creation</field>
<field name="arch" type="xml">
<form string="Journal Creation">
<p>The account of the statement you are uploading is not yet recorded in Odoo. In order to proceed with the upload, you need to create a bank journal for this account.</p>
<p>Just click OK to create the account/journal and finish the upload. If this was a mistake, hit cancel to abort the upload.</p>
<group>
<group>
<field name="name" string="Bank Journal Name"/>
<field name="bank_acc_number" readonly="1"/>
<field name="bank_id"/>
</group>
<group>
<field name="currency_id" readonly="1" groups="base.group_multi_currency"/>
<field name="company_id" groups="base.group_multi_company"/>
</group>
</group>
<footer>
<button name="create_journal" string="OK" type="object" class="btn-primary"/>
<button string="Cancel" class="btn-secondary" special="cancel"/>
</footer>
</form>
</field>
</record>
</data>
</odoo>