mirror of
				https://github.com/brain-tec/account_ebics.git
				synced 2025-11-04 07:00:35 +00:00 
			
		
		
		
	[16.0] add support for COMMERZBANK camt files
This commit is contained in:
		@@ -3,7 +3,7 @@
 | 
			
		||||
 | 
			
		||||
{
 | 
			
		||||
    "name": "EBICS banking protocol",
 | 
			
		||||
    "version": "16.0.1.6.0",
 | 
			
		||||
    "version": "16.0.1.6.1",
 | 
			
		||||
    "license": "LGPL-3",
 | 
			
		||||
    "author": "Noviat",
 | 
			
		||||
    "website": "https://www.noviat.com/",
 | 
			
		||||
 
 | 
			
		||||
@@ -550,6 +550,11 @@ class EbicsFile(models.Model):
 | 
			
		||||
            currency_code = stmt.xpath(
 | 
			
		||||
                "ns:Acct/ns:Ccy/text() | ns:Bal/ns:Amt/@Ccy", namespaces=ns
 | 
			
		||||
            )[0]
 | 
			
		||||
            # some banks (e.g. COMMERZBANK) add the currency as the last 3 digits
 | 
			
		||||
            # of the bank account number hence we need to remove this since otherwise
 | 
			
		||||
            # the journal matching logic fails
 | 
			
		||||
            if acc_number[-3:] == currency_code:
 | 
			
		||||
                acc_number = acc_number[:-3]
 | 
			
		||||
 | 
			
		||||
            root_new = deepcopy(root)
 | 
			
		||||
            entries = False
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user