mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Bug 797418 - In budget report, column with Actual Totals for Liabilities and Income are reversed
budget.scm had some cleanup whereby totals were accumulated but are now re-retrieved. Forgot to reverse actuals for some account signs reversals.
This commit is contained in:
parent
656d2718d8
commit
0ab0d23b00
@ -396,6 +396,7 @@
|
||||
budget acct total-periods))
|
||||
(act-total (gnc:get-account-periodlist-actual-value
|
||||
budget acct total-periods))
|
||||
(act-total (if reverse-balance? (- act-total) act-total))
|
||||
(dif-total (if income-acct?
|
||||
(- act-total bgt-total)
|
||||
(- bgt-total act-total))))
|
||||
|
Loading…
Reference in New Issue
Block a user