mirror of
				https://github.com/brain-tec/account_ebics.git
				synced 2025-11-03 22:50:59 +00:00 
			
		
		
		
	Merge pull request #28 from Noviat/16.0
Syncing from upstream Noviat/account_ebics (16.0)
This commit is contained in:
		@@ -3,7 +3,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "name": "EBICS banking protocol",
 | 
					    "name": "EBICS banking protocol",
 | 
				
			||||||
    "version": "16.0.1.9.1",
 | 
					    "version": "16.0.1.9.2",
 | 
				
			||||||
    "license": "LGPL-3",
 | 
					    "license": "LGPL-3",
 | 
				
			||||||
    "author": "Noviat",
 | 
					    "author": "Noviat",
 | 
				
			||||||
    "website": "https://www.noviat.com/",
 | 
					    "website": "https://www.noviat.com/",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,4 +1,4 @@
 | 
				
			|||||||
# Copyright 2009-2023 Noviat.
 | 
					# Copyright 2009-2024 Noviat.
 | 
				
			||||||
# License LGPL-3 or later (http://www.gnu.org/licenses/lgpl).
 | 
					# License LGPL-3 or later (http://www.gnu.org/licenses/lgpl).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import logging
 | 
					import logging
 | 
				
			||||||
@@ -76,7 +76,7 @@ class EbicsChangePassphrase(models.TransientModel):
 | 
				
			|||||||
                "passphrase": passphrase,
 | 
					                "passphrase": passphrase,
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
            if self.new_sig_pass:
 | 
					            if self.new_sig_pass:
 | 
				
			||||||
                keyring_params["sig_passphrase"] = self.old_sig_pass
 | 
					                keyring_params["sig_passphrase"] = self.old_sig_pass or None
 | 
				
			||||||
            keyring = EbicsKeyRing(**keyring_params)
 | 
					            keyring = EbicsKeyRing(**keyring_params)
 | 
				
			||||||
            change_params = {}
 | 
					            change_params = {}
 | 
				
			||||||
            if self.new_pass:
 | 
					            if self.new_pass:
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user