From 2091269046f67f8089f808671e1f0f3c4e6e9758 Mon Sep 17 00:00:00 2001 From: Luc De Meyer Date: Sun, 15 Jan 2023 22:12:36 +0100 Subject: [PATCH] fix _update_order_number, cf. https://github.com/Noviat/account_ebics/issues/62 --- account_ebics/models/ebics_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/account_ebics/models/ebics_config.py b/account_ebics/models/ebics_config.py index 530ed7c..4224b10 100644 --- a/account_ebics/models/ebics_config.py +++ b/account_ebics/models/ebics_config.py @@ -232,6 +232,7 @@ class EbicsConfig(models.Model): o_list[-i] = "A" break if c == "Z": + o_list[-i] = "0" continue else: o_list[-i] = chr(ord(c) + 1)