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, accountTransactionsReport,
accountTransactionsReportItems, accountTransactionsReportItems,
transactionRegisterDate, transactionRegisterDate,
totallabel,
balancelabel,
tests_AccountTransactionsReport tests_AccountTransactionsReport
) )
where where

View File

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