output fixes, match ledger output for reg/bal/print commands

This commit is contained in:
Simon Michael 2007-07-07 09:05:35 +00:00
parent b5087b88c5
commit 3ca6ebdf46
3 changed files with 16 additions and 13 deletions

View File

@ -39,29 +39,29 @@ autofillEntry e =
-- account name 1..................... ...$amount1[ ; comment...............] -- account name 1..................... ...$amount1[ ; comment...............]
-- account name 2..................... ..$-amount1[ ; comment...............] -- account name 2..................... ..$-amount1[ ; comment...............]
-- --
-- codewidth = 10 -- pcodewidth = no limit -- 10
-- descwidth = 20 -- pdescwidth = no limit -- 20
-- acctwidth = 35 -- pacctwidth = 35 minimum, no maximum
-- amtwidth = 11 -- pamtwidth = 11
-- commentwidth = 22 -- pcommentwidth = no limit -- 22
showEntry :: LedgerEntry -> String showEntry :: LedgerEntry -> String
showEntry e = showEntry e =
unlines $ ["", description] ++ (showtxns $ etransactions e) unlines $ ["", description] ++ (showtxns $ etransactions e)
where where
description = concat [date, status, code, desc, comment] description = concat [date, status, code, desc] -- , comment]
date = showDate $ edate e date = showDate $ edate e
status = if estatus e then " *" else "" status = if estatus e then " *" else ""
code = if (length $ ecode e) > 0 then (printf " (%s)" $ ecode e) else "" code = if (length $ ecode e) > 0 then (printf " (%s)" $ ecode e) else ""
desc = " " ++ (elideRight 20 $ edescription e) desc = " " ++ edescription e
comment = if (length $ ecomment e) > 0 then " ; "++(ecomment e) else "" comment = if (length $ ecomment e) > 0 then " ; "++(ecomment e) else ""
showtxns (t1:t2:[]) = [showtxn t1, showtxnnoamt t2] showtxns (t1:t2:[]) = [showtxn t1, showtxnnoamt t2]
showtxns ts = map showtxn ts showtxns ts = map showtxn ts
showtxn t = showacct t ++ " " ++ (showamount $ tamount t) ++ (showcomment $ tcomment t) showtxn t = showacct t ++ " " ++ (showamount $ tamount t) ++ (showcomment $ tcomment t)
showtxnnoamt t = showacct t ++ " " ++ (showcomment $ tcomment t) showtxnnoamt t = showacct t ++ " " ++ (showcomment $ tcomment t)
showacct t = " " ++ (showaccountname $ taccount t) showacct t = " " ++ (showaccountname $ taccount t)
showamount = printf "%11s" . showAmountRounded showamount = printf "%12s" . showAmountRounded
showaccountname = printf "%-35s" . elideRight 35 showaccountname s = printf "%-34s" s
showcomment s = if (length s) > 0 then " ; "++s else "" showcomment s = if (length s) > 0 then " ; "++s else ""
showEntries :: [LedgerEntry] -> String showEntries :: [LedgerEntry] -> String

View File

@ -12,7 +12,7 @@ showLedgerTransaction :: LedgerTransaction -> String
showLedgerTransaction t = (showaccountname $ taccount t) ++ " " ++ (showamount $ tamount t) showLedgerTransaction t = (showaccountname $ taccount t) ++ " " ++ (showamount $ tamount t)
where where
showaccountname = printf "%-22s" . elideRight 22 showaccountname = printf "%-22s" . elideRight 22
showamount = printf "%11s" . showAmountRoundedOrZero showamount = printf "%12s" . showAmountRoundedOrZero
elideRight width s = elideRight width s =
case length s > width of case length s > width of

View File

@ -195,7 +195,10 @@ ledgerentry = do
date <- ledgerdate date <- ledgerdate
status <- ledgerstatus status <- ledgerstatus
code <- ledgercode code <- ledgercode
description <- many (noneOf ";\n") <?> "description" -- ledger treats entry comments as part of the description, we too for now
-- desc <- many (noneOf ";\n") <?> "description"
-- let description = reverse $ dropWhile (==' ') $ reverse desc
description <- many (noneOf "\n") <?> "description"
comment <- ledgercomment comment <- ledgercomment
restofline restofline
transactions <- ledgertransactions transactions <- ledgertransactions