From 99e352e40a14ba174d2b174f5b6275c22e0df608 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 643af03..ed4fa3a 100644 --- a/account_ebics/models/ebics_config.py +++ b/account_ebics/models/ebics_config.py @@ -484,6 +484,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)