mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
[MIG] account_bank_statement_import_camt 10.0
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
{
|
{
|
||||||
'name': 'CAMT Format Bank Statements Import',
|
'name': 'CAMT Format Bank Statements Import',
|
||||||
'version': '9.0.1.0.0',
|
'version': '10.0.1.0.0',
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
'author': 'Odoo Community Association (OCA), Therp BV',
|
'author': 'Odoo Community Association (OCA), Therp BV',
|
||||||
'website': 'https://github.com/OCA/bank-statement-import',
|
'website': 'https://github.com/OCA/bank-statement-import',
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
import logging
|
import logging
|
||||||
import StringIO
|
import StringIO
|
||||||
import zipfile
|
import zipfile
|
||||||
from openerp import api, models
|
from odoo import api, models
|
||||||
from ..camt import CamtParser as Parser
|
from ..camt import CamtParser as Parser
|
||||||
|
|
||||||
_logger = logging.getLogger(__name__)
|
_logger = logging.getLogger(__name__)
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
# © 2013-2016 Therp BV <http://therp.nl>
|
# © 2013-2016 Therp BV <http://therp.nl>
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
import base64
|
import base64
|
||||||
from openerp.tests.common import TransactionCase
|
from odoo.tests.common import TransactionCase
|
||||||
from openerp.tools.misc import file_open
|
from odoo.tools.misc import file_open
|
||||||
|
|
||||||
|
|
||||||
class TestImport(TransactionCase):
|
class TestImport(TransactionCase):
|
||||||
|
|||||||
@@ -1,15 +1,13 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<openerp>
|
<odoo>
|
||||||
<data>
|
<record id="account_bank_statement_import_view" model="ir.ui.view">
|
||||||
<record id="account_bank_statement_import_view" model="ir.ui.view">
|
<field name="model">account.bank.statement.import</field>
|
||||||
<field name="model">account.bank.statement.import</field>
|
<field name="inherit_id" ref="account_bank_statement_import.account_bank_statement_import_view" />
|
||||||
<field name="inherit_id" ref="account_bank_statement_import.account_bank_statement_import_view" />
|
<field name="arch" type="xml">
|
||||||
<field name="arch" type="xml">
|
<ul id="statement_format" position="inside">
|
||||||
<ul id="statement_format" position="inside">
|
<li>CAMT</li>
|
||||||
<li>CAMT</li>
|
<li>zipped CAMT</li>
|
||||||
<li>zipped CAMT</li>
|
</ul>
|
||||||
</ul>
|
</field>
|
||||||
</field>
|
</record>
|
||||||
</record>
|
</odoo>
|
||||||
</data>
|
|
||||||
</openerp>
|
|
||||||
|
|||||||
Reference in New Issue
Block a user