-
Notifications
You must be signed in to change notification settings - Fork 618
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
Improve Bigbank PDF importer #3894
Conversation
Hello @MonkeySon Your problem describes that you are moving money from one account to another, so "removal" is correct. Regards |
* Added support for transaction type "Interne Belastung"
Hello Alex, sorry for the testcase-confusion, I made it a separate one now. I'm aware that accounts and portfolios are not the same and that they have different transaction types. My question is if it would be beneficial for PP users to directly create this transaction, instead of having a removal in account A and then a manual (or from another PDF import) deposit in account B. EDIT: |
Hello @MonkeySon @buchen In principle this is of course possible, but we have to make several adjustments. 1. The Importer changes
2. UI for checking (apparently no checking is done here)2.1. Problem 12.2. Problem 22.3 Problem 33. Extension of the ExtractorMatcher
4, Test case in old structure (better with new one, but we need to fix some problems)
I think it works... but we have to fix some issues... Regards |
@MonkeySon writes:
There UI has some (limited) support to import account transfers. So far our strategy for the "cash transfers" was:
Why not a transfer transactions? Because
But @Nirus2000 and me already discussed that it makes sense to provide more options after the import:
For this particular change, I propose to create a deposit/withdrawal transaction instead. |
Hello @MonkeySon |
Hello @buchen and @Nirus2000 , thanks for your effort and inputs on that topic!
This was also my concern thinking about this... It just makes it a little bit less customizable in a way.
Here I would assume this can be checked, similar to the other import checks, where it skips existing equal transactions.
These seem nice ideas. But I fully understand the points mentioned and am fine with keeping it implemented as a removal. Thank you for the merge! |
It is currently implemented as a REMOVAL AccountTransaction Type, although this might not be fully correct.
Bigbank offers overnight accounts and fixed-term accounts. This transaction was from the overnight to the fixed-term account, therefore "Interne Belastung". I replaced the Transaction Type with TRANSFER_OUT and expected a selection GUI which lets me choose accounts for the IN/OUT transaction. I intend to use two separate PP accounts for each Bigbank account.
Unfortunately, this seems to be an unsupported transaction for PDF importers, as it gives me an UnsupportedOperationException (thrown here).
What would be your suggestion in that case?
Keep it as a simple removal and let the user manually handle that case,
or is there a way to create an IN/OUT transaction for the PDF importer?
Cheers,
MonkeySon