make -E work in register report
This commit is contained in:
parent
89abdfa456
commit
1fc9d47bd8
@ -33,7 +33,10 @@ showRegisterReport opts args l
|
|||||||
| otherwise = showtxns summaryts nulltxn startbal
|
| otherwise = showtxns summaryts nulltxn startbal
|
||||||
where
|
where
|
||||||
interval = intervalFromOpts opts
|
interval = intervalFromOpts opts
|
||||||
ts = filter (not . isZeroMixedAmount . amount) $ filter matchapats $ ledgerTransactions l
|
ts = filterempties $ filter matchapats $ ledgerTransactions l
|
||||||
|
filterempties
|
||||||
|
| Empty `elem` opts = id
|
||||||
|
| otherwise = filter (not . isZeroMixedAmount . amount)
|
||||||
(precedingts, ts') = break (matchdisplayopt dopt) ts
|
(precedingts, ts') = break (matchdisplayopt dopt) ts
|
||||||
(displayedts, _) = span (matchdisplayopt dopt) ts'
|
(displayedts, _) = span (matchdisplayopt dopt) ts'
|
||||||
startbal = sumTransactions precedingts
|
startbal = sumTransactions precedingts
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user