Merge pull request #13 from Noviat/13-mig-account_ebics_oe

[13.0][MIG]account_ebics_oe
This commit is contained in:
Luc De Meyer 2020-05-29 16:07:29 +02:00 committed by GitHub
commit 415efd152e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# Copyright 2009-2019 Noviat. # Copyright 2009-2020 Noviat.
# License LGPL-3 or later (http://www.gnu.org/licenses/lpgl). # License LGPL-3 or later (http://www.gnu.org/licenses/lpgl).
{ {

View File

@ -1,4 +1,4 @@
# Copyright 2009-2019 Noviat. # Copyright 2009-2020 Noviat.
# License LGPL-3 or later (http://www.gnu.org/licenses/lpgl). # License LGPL-3 or later (http://www.gnu.org/licenses/lpgl).
import logging import logging
@ -21,11 +21,13 @@ fintech_register_users = config.get('fintech_register_users')
try: try:
if fintech: if fintech:
fintech_register_users = fintech_register_users \
and fintech_register_users.split(',')
fintech.cryptolib = 'cryptography' fintech.cryptolib = 'cryptography'
fintech.register( fintech.register(
fintech_register_name, fintech_register_name,
fintech_register_keycode, fintech_register_keycode,
fintech_register_users.split(',')) fintech_register_users)
except RuntimeError as e: except RuntimeError as e:
if e.message == "'register' can be called only once": if e.message == "'register' can be called only once":
pass pass

View File

@ -1,10 +1,10 @@
# Copyright 2019 Noviat. # Copyright 2020 Noviat.
# License LGPL-3 or later (http://www.gnu.org/licenses/lpgl). # License LGPL-3 or later (http://www.gnu.org/licenses/lpgl).
{ {
'name': 'account_ebics on Odoo Enterprise', 'name': 'account_ebics on Odoo Enterprise',
'summary': "Deploy account_ebics module on Odoo Enterprise", 'summary': "Deploy account_ebics module on Odoo Enterprise",
'version': '12.0.1.0.0', 'version': '13.0.1.0.0',
'author': 'Noviat', 'author': 'Noviat',
'category': 'Hidden', 'category': 'Hidden',
'license': 'LGPL-3', 'license': 'LGPL-3',