[MIG] account_bank_statement_import_camt 10.0

This commit is contained in:
Stefan Rijnhart
2016-12-13 21:08:12 +01:00
parent 704a01d6f3
commit 2ddb8b114e
4 changed files with 16 additions and 18 deletions

View File

@@ -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',

View File

@@ -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__)

View File

@@ -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):

View File

@@ -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>