mirror of
https://github.com/simonmichael/hledger.git
synced 2024-12-28 21:02:04 +03:00
fix a bug with account name eliding in balance report
This commit is contained in:
parent
2711474bc9
commit
fdf4955007
@ -171,7 +171,7 @@ showAccountTreeWithBalances matchedacctnames =
|
|||||||
showAccountTreeWithBalances' matchedacctnames indentlevel prefix (Node (Account fullname _ bal) subs) =
|
showAccountTreeWithBalances' matchedacctnames indentlevel prefix (Node (Account fullname _ bal) subs) =
|
||||||
if isboringparent then showsubswithprefix else showacct ++ showsubswithindent
|
if isboringparent then showsubswithprefix else showacct ++ showsubswithindent
|
||||||
where
|
where
|
||||||
showsubswithprefix = showsubs indentlevel (fullname++":")
|
showsubswithprefix = showsubs indentlevel (prefix++leafname++":")
|
||||||
showsubswithindent = showsubs (indentlevel+1) ""
|
showsubswithindent = showsubs (indentlevel+1) ""
|
||||||
showsubs i p = concatMap (showAccountTreeWithBalances' matchedacctnames i p) subs
|
showsubs i p = concatMap (showAccountTreeWithBalances' matchedacctnames i p) subs
|
||||||
showacct = showbal ++ " " ++ indent ++ prefix ++ leafname ++ "\n"
|
showacct = showbal ++ " " ++ indent ++ prefix ++ leafname ++ "\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user