37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Haskell
		
	
	
	
	
	
| {-|
 | |
| 
 | |
| A 'RawTransaction' represents a single transaction line within a ledger
 | |
| entry. We call it raw to distinguish from the cached 'Transaction'.
 | |
| 
 | |
| -}
 | |
| 
 | |
| module Ledger.RawTransaction
 | |
| where
 | |
| import Ledger.Utils
 | |
| import Ledger.Types
 | |
| import Ledger.Amount
 | |
| import Ledger.AccountName
 | |
| 
 | |
| 
 | |
| instance Show RawTransaction where show = showRawTransaction
 | |
| 
 | |
| showRawTransaction :: RawTransaction -> String
 | |
| showRawTransaction (RawTransaction a amt _ ttype) = 
 | |
|     showaccountname a ++ " " ++ (showamount amt) 
 | |
|     where
 | |
|       showaccountname = printf "%-22s" . bracket . elideAccountName width
 | |
|       showamount = printf "%12s" . showAmountOrZero
 | |
|       (bracket,width) = case ttype of
 | |
|                       BalancedVirtualTransaction -> (\s -> "["++s++"]", 20)
 | |
|                       VirtualTransaction -> (\s -> "("++s++")", 20)
 | |
|                       otherwise -> (id,22)
 | |
| 
 | |
| isReal :: RawTransaction -> Bool
 | |
| isReal t = rttype t == RegularTransaction
 | |
| 
 | |
| hasAmount :: RawTransaction -> Bool
 | |
| hasAmount = ("AUTO" /=) . symbol . commodity . tamount
 | |
| 
 | |
| sumRawTransactions :: [RawTransaction] -> MixedAmount
 | |
| sumRawTransactions = normaliseMixedAmount . map tamount
 |