hledger/Account.hs

17 lines
302 B
Haskell
Raw Normal View History

module Account
where
import Ledger.Utils
2008-10-03 04:12:59 +04:00
import Ledger.Types
import AccountName
2007-03-12 10:58:11 +03:00
import Amount
import LedgerEntry
import RawTransaction
import Transaction
instance Show Account where
show (Account a ts b) = printf "Account %s with %d transactions" a $ length ts
2007-03-11 00:21:04 +03:00
nullacct = Account "" [] nullamt