-
-
Notifications
You must be signed in to change notification settings - Fork 417
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
[14.0][FIX] account_statement_import_txt_xlsx: handle empty debit/credit #546
Conversation
Hi @alexey-pelykh, |
There hasn't been any activity on this pull request in the past 4 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. |
I have rebased now. Can we merge? |
This PR has the |
Hi @alexey-pelykh |
There hasn't been any activity on this pull request in the past 4 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. |
@pedrobaeza @MiquelRForgeFlow @alexey-pelykh |
@@ -1,5 +1,5 @@ | |||
"Date","Label","Debit","Credit","Balance","Partner Name","Bank Account" | |||
"12/15/2018","Credit 20.00","0.00","20.00","-10.00","John Doe","123456789" | |||
"12/15/2018","Debit empty, Credit 20",,"20","-10.00","John Doe","123456789" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"12/15/2018","Debit empty, Credit 20",,"20","-10.00","John Doe","123456789" | |
"12/15/2018","Debit empty, Credit 20.00",,"20.00","-10.00","John Doe","123456789" |
🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I set 20 to test that it works with an integer. Should I write Debit empty, Credit integer
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have now written Debit test empty, Credit test integer
to be clear on why I have empty / integer values.
Can we merge this now? |
/ocabot rebase |
Congratulations, PR rebased to 14.0. |
/ocabot merge patch |
Hey, thanks for contributing! Proceeding to merge this for you. |
@alexey-pelykh your merge command was aborted due to failed check(s), which you can inspect on this commit of 14.0-ocabot-merge-pr-546-by-alexey-pelykh-bump-patch. After fixing the problem, you can re-issue a merge command. Please refrain from merging manually as it will most probably make the target branch red. |
Can anyone explain the failed check? I don't understand what is the problem. |
When the bank statement import file has two amount columns (in and out), each line is using one column (in or out), and the other column is empty. With this fix, empty values will be handled correctly.