-
Notifications
You must be signed in to change notification settings - Fork 158
Returns for Income:Interest:{name}
not showing up when transactions have multiple postings
#121
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
Comments
@rohitagarwal003 could you try if the below works? I think the current logic doesn't handle more than 2 postings well when it comes to interest calculation.
I will look into it, there is some general ambiguity in figuring out how money goes from which account to which account when it comes to transactions with multiple postings. |
Yeah, that works. I filed a bug because I wanted to avoid making TDS as a separate transaction. But I can update my ledger to use different transactions for TDS if this is going to be hard to fix. |
What is your expectation here? Do you want to treat (interest - tax) as the gain for the debt account? This might be a little more complicated. For now suggest sticking with 2 transactions, I will fix some cases like having 2 interest postings & 1 debt posting. But having interest - tax might be more complicated and I need to think through how it will work out. |
No. I think I wanted to treat just the interest as gain. My reason for keeping interest+tax in the same transaction was because that's what I was did with my salary transaction (where the single transaction has multiple postings for tax, epf, espp, bank). So, as long as we can recognize interest in >2 posting transaction, it would fix my case. I just started using ledger + paisa since yesterday, so I am still figuring out how to correctly use it. |
With 2 transactions, you would first move money from interest account to debt, then debt to expense. The debt to expense would be considered as a withdrawal. In this way, you would be calculating the returns on pre-tax gain. If you use 1 transaction, it technically means the amount from the interest account is split and part of it goes to the expense account and part to the debt account. In this way, you would be kind of calculating returns on post-tax gain. Based on what you want, you can decide on the format. I will try to fix the bug though, because it currently consider the split transaction as investment (which is wrong) |
Makes sense. Thanks for the explanation! |
Describe your Environment
OS: macOS 14.2 (apple silicon)
Paisa Version: 0.6.2
App Variant: Desktop
Describe the bug
I have accounts like:
and transactions like:
Theses transactions don't show up as "Gain" in the UI as described in https://paisa.fyi/reference/accounts/#interest.
This seems to be because I am deducting tax in the same transaction.
It shows up as "Gain" in the UI if I make tax as a different transaction.
The text was updated successfully, but these errors were encountered: