mirror of
				https://github.com/brain-tec/account_ebics.git
				synced 2025-11-04 07:00:35 +00:00 
			
		
		
		
	[10.0]fix ebics 2.4 OrderId management
This commit is contained in:
		@@ -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',
 | 
			
		||||
 
 | 
			
		||||
@@ -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
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user