mirror of
				https://github.com/brain-tec/account_ebics.git
				synced 2025-11-04 07:00:35 +00:00 
			
		
		
		
	[14.0]fix ebics 2.4 OrderId management
This commit is contained in:
		@@ -1,9 +1,9 @@
 | 
			
		||||
# Copyright 2009-2021 Noviat.
 | 
			
		||||
# Copyright 2009-2022 Noviat.
 | 
			
		||||
# License LGPL-3 or later (http://www.gnu.org/licenses/lpgl).
 | 
			
		||||
 | 
			
		||||
{
 | 
			
		||||
    'name': 'EBICS banking protocol',
 | 
			
		||||
    'version': '14.0.1.0.1',
 | 
			
		||||
    'version': '14.0.1.0.2',
 | 
			
		||||
    'license': 'LGPL-3',
 | 
			
		||||
    'author': 'Noviat',
 | 
			
		||||
    'website': 'www.noviat.com',
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
# Copyright 2009-2021 Noviat.
 | 
			
		||||
# Copyright 2009-2022 Noviat.
 | 
			
		||||
# License LGPL-3 or later (http://www.gnu.org/licenses/lpgl).
 | 
			
		||||
 | 
			
		||||
"""
 | 
			
		||||
@@ -343,8 +343,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