From 5929e5e770a5b3d4ec6a26398b1e52bf8d817c14 Mon Sep 17 00:00:00 2001 From: jHetzer Date: Fri, 6 Dec 2019 02:18:53 +0100 Subject: [PATCH] Fix: FinTS Import KSK The used line was a leftover when the PSD2 issue stated. VOBA and KSK seem to work. --- erpnextfints/utils/fints_wrapper.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/erpnextfints/utils/fints_wrapper.py b/erpnextfints/utils/fints_wrapper.py index ff264a7..d1d16e0 100755 --- a/erpnextfints/utils/fints_wrapper.py +++ b/erpnextfints/utils/fints_wrapper.py @@ -33,14 +33,13 @@ def __init_fints_connection(self): self.fints_login.fints_url, mode=FinTSClientMode.INTERACTIVE ) - self.fints_connection.set_tan_mechanism('942') + #self.fints_connection.set_tan_mechanism('942') except Exception as e: frappe.throw("Could not conntect to fints server with error
{0}".format(e)) def get_fints_connection(self): return self.fints_connection def get_fints_accounts(self): - frappe.publish_realtime("fints_login_progress", {"progress": "70", "fints_login": self.name,"message": "Load accounts", "reload": False}, user=frappe.session.user) if not hasattr(self, 'fints_accounts'):