mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-10 05:39:31 +03:00
stats: show count of market prices (P), and the commodities covered
This commit is contained in:
parent
62e96b1b20
commit
5bc1e7746f
@ -70,6 +70,7 @@ showLedgerStats l today span =
|
||||
,("Payees/descriptions", show $ size $ fromList $ map (tdescription) ts)
|
||||
,("Accounts", printf "%d (depth %d)" acctnum acctdepth)
|
||||
,("Commodities", printf "%s (%s)" (show $ length cs) (T.intercalate ", " cs))
|
||||
,("Market prices", printf "%s (%s)" (show $ length mktprices) (T.intercalate ", " mktpricecommodities))
|
||||
-- Transactions this month : %(monthtxns)s (last month in the same period: %(lastmonthtxns)s)
|
||||
-- Unmarked transactions : %(unmarked)s
|
||||
-- Days since reconciliation : %(reconcileelapsed)s
|
||||
@ -106,4 +107,5 @@ showLedgerStats l today span =
|
||||
acctnum = length as
|
||||
acctdepth | null as = 0
|
||||
| otherwise = maximum $ map accountNameLevel as
|
||||
|
||||
mktprices = jpricedirectives j
|
||||
mktpricecommodities = nub $ sort $ map pdcommodity mktprices
|
||||
|
@ -21,6 +21,7 @@ Transactions last 7 days : 0 (0.0 per day)
|
||||
Payees/descriptions : 5
|
||||
Accounts : 8 (depth 3)
|
||||
Commodities : 1 ($)
|
||||
Market prices : 12 ($)
|
||||
```
|
||||
|
||||
This command also supports
|
||||
|
Loading…
Reference in New Issue
Block a user