mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
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
37 lines
1.7 KiB
XML
37 lines
1.7 KiB
XML
<?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>
|