web: account register now obeys --cost and --effective flags like the rest
This commit is contained in:
parent
bc8411219b
commit
e005625780
@ -401,7 +401,8 @@ accountTransactionsReport :: ReportOpts -> Journal -> Matcher -> Matcher -> Tran
|
|||||||
accountTransactionsReport opts j m thisacctmatcher = (label, items)
|
accountTransactionsReport opts j m thisacctmatcher = (label, items)
|
||||||
where
|
where
|
||||||
-- transactions affecting this account, in date order
|
-- transactions affecting this account, in date order
|
||||||
ts = sortBy (comparing tdate) $ filter (matchesTransaction thisacctmatcher) $ jtxns j
|
ts = sortBy (comparing tdate) $ filter (matchesTransaction thisacctmatcher) $ jtxns $
|
||||||
|
journalSelectingDateFromOpts opts $ journalSelectingAmountFromOpts opts j
|
||||||
-- starting balance: if we are filtering by a start date and nothing else,
|
-- starting balance: if we are filtering by a start date and nothing else,
|
||||||
-- the sum of postings to this account before that date; otherwise zero.
|
-- the sum of postings to this account before that date; otherwise zero.
|
||||||
(startbal,label) | matcherIsNull m = (nullmixedamt, balancelabel)
|
(startbal,label) | matcherIsNull m = (nullmixedamt, balancelabel)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user