mirror of
https://github.com/simonmichael/hledger.git
synced 2024-12-28 12:54:07 +03:00
f54e3299b9
and distinguish better between account depth and item indent level
32 lines
447 B
Plaintext
32 lines
447 B
Plaintext
# issue 94: total balance should be that of top-level accounts, with and without --flat
|
|
# 1.
|
|
hledgerdev -f - balance
|
|
<<<
|
|
1/1
|
|
(a) 1
|
|
|
|
1/1
|
|
(a:aa) 1
|
|
>>>
|
|
2 a
|
|
1 aa
|
|
--------------------
|
|
2
|
|
>>>= 0
|
|
|
|
# 2.
|
|
hledgerdev -f - balance --flat
|
|
<<<
|
|
1/1
|
|
(a) 1
|
|
|
|
1/1
|
|
(a:aa) 1
|
|
>>>
|
|
2 a
|
|
1 a:aa
|
|
--------------------
|
|
2
|
|
>>>= 0
|
|
|