web: try to fix RegisterR warning

This commit is contained in:
Simon Michael 2019-05-23 22:34:31 -07:00
parent 5e54920160
commit ea5050963f
2 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,6 @@ module Hledger.Reports.AccountTransactionsReport (
accountTransactionsReport,
accountTransactionsReportItems,
transactionRegisterDate,
totallabel,
balancelabel,
tests_AccountTransactionsReport
)
where

View File

@ -58,6 +58,8 @@ triBalance (_,_,_,_,_,a) = a
triCommodityAmount c = filterMixedAmountByCommodity c . triAmount
triCommodityBalance c = filterMixedAmountByCommodity c . triBalance
totallabel = "Period Total"
-- | Select transactions from the whole journal. This is similar to a
-- "postingsReport" except with transaction-based report items which
-- are ordered most recent first. XXX Or an EntriesReport - use that instead ?