mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix bug in computing cleared balance.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@9193 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
2670d4dc53
commit
c9a6a3ccb6
@ -1,3 +1,11 @@
|
|||||||
|
2003-08-29 David Hampton <hampton@employees.org>
|
||||||
|
|
||||||
|
* src/engine/Account.c: Fix bug in computing cleared balance. The
|
||||||
|
bug was introdiced 4/1.
|
||||||
|
|
||||||
|
* lots of scm files: Remove the RCS "Id:" tag. Its a PITA when
|
||||||
|
syncing between branches.
|
||||||
|
|
||||||
2003-08-28 Christian Stimming <stimming@tuhh.de>
|
2003-08-28 Christian Stimming <stimming@tuhh.de>
|
||||||
|
|
||||||
* src/import-export/import-backend.c: Aaarg. Fixed extremely
|
* src/import-export/import-backend.c: Aaarg. Fixed extremely
|
||||||
|
@ -1200,7 +1200,7 @@ xaccAccountRecomputeBalance (Account * acc)
|
|||||||
|
|
||||||
balance = gnc_numeric_add_fixed(balance, split->amount);
|
balance = gnc_numeric_add_fixed(balance, split->amount);
|
||||||
|
|
||||||
if (CREC == split->reconciled)
|
if (NREC != split->reconciled)
|
||||||
cleared_balance = gnc_numeric_add_fixed(cleared_balance, split->amount);
|
cleared_balance = gnc_numeric_add_fixed(cleared_balance, split->amount);
|
||||||
|
|
||||||
if (YREC == split->reconciled ||
|
if (YREC == split->reconciled ||
|
||||||
|
Loading…
Reference in New Issue
Block a user