Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug to fix in ebics_config #62

Closed
matmicro opened this issue Jan 13, 2023 · 1 comment
Closed

Bug to fix in ebics_config #62

matmicro opened this issue Jan 13, 2023 · 1 comment

Comments

@matmicro
Copy link

matmicro commented Jan 13, 2023

There is a bug in the below function : def_update_order_number(self, OrderID)

OderIDs are improperly updated on next :
A00Z is followed by A01Z, A02Z, A03Z, ...
which should be A010, A011, A012... A01Z, A020, A021...

This leads to reach extremely fast ZZZZ !

File ebics_config.py, line 487 :
Should replace :

   if c == 'Z':
      continue

By:

   if c == 'Z':
      o_list[-i] = '0'
      continue

Regards

luc-demeyer added a commit that referenced this issue Jan 15, 2023
luc-demeyer added a commit that referenced this issue Jan 15, 2023
luc-demeyer added a commit that referenced this issue Jan 15, 2023
luc-demeyer added a commit that referenced this issue Jan 15, 2023
luc-demeyer added a commit that referenced this issue Jan 15, 2023
luc-demeyer added a commit that referenced this issue Jan 15, 2023
luc-demeyer added a commit that referenced this issue Jan 15, 2023
luc-demeyer added a commit that referenced this issue Jan 15, 2023
@luc-demeyer
Copy link
Contributor

Thanks a lot for this contribution.
I have applied your suggested patch to account_ebics version 8.0 up to version 16.0.

NoviatBot pushed a commit that referenced this issue Jan 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants