diff --git a/account_ebics/__manifest__.py b/account_ebics/__manifest__.py index 5c53cf9..c37bfca 100644 --- a/account_ebics/__manifest__.py +++ b/account_ebics/__manifest__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- -# Copyright 2009-2020 Noviat. +# Copyright 2009-2022 Noviat. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'EBICS banking protocol', - 'version': '10.0.1.6.2', + 'version': '10.0.1.6.3', 'license': 'AGPL-3', 'author': 'Noviat', 'category': 'Accounting & Finance', diff --git a/account_ebics/wizard/ebics_xfer.py b/account_ebics/wizard/ebics_xfer.py index f892447..86b467b 100644 --- a/account_ebics/wizard/ebics_xfer.py +++ b/account_ebics/wizard/ebics_xfer.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright 2009-2018 Noviat. +# Copyright 2009-2022 Noviat. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). """ @@ -328,8 +328,9 @@ class EbicsXfer(models.TransientModel): tb = ''.join(format_exception(*exc_info())) self.note += '\n%s' % tb - if self.ebics_config_id.ebics_version == 'H003' and OrderID: - self.ebics_config_id._update_order_number(OrderID) + if self.ebics_config_id.ebics_version == 'H003': + OrderID = self.ebics_config_id._get_order_number() + self.ebics_config_id.sudo()._update_order_number(OrderID) return ebics_file