2008-10-01 04:29:58 +04:00
|
|
|
{-|
|
2008-10-03 06:04:15 +04:00
|
|
|
An 'Amount' is some quantity of money, shares, or anything else.
|
|
|
|
|
2008-10-13 01:52:48 +04:00
|
|
|
A simple amount is a commodity, quantity pair (where commodity can be anything):
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2007-03-13 07:11:39 +03:00
|
|
|
$1
|
|
|
|
£-50
|
|
|
|
EUR 3.44
|
|
|
|
GOOG 500
|
|
|
|
1.5h
|
2008-10-03 06:04:15 +04:00
|
|
|
90apples
|
2007-03-13 07:11:39 +03:00
|
|
|
0
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2008-10-03 06:04:15 +04:00
|
|
|
A mixed amount (not yet implemented) is one or more simple amounts:
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2007-03-13 07:11:39 +03:00
|
|
|
$50, EUR 3, AAPL 500
|
|
|
|
16h, $13.55, oranges 6
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2008-10-13 01:52:48 +04:00
|
|
|
Commodities may be convertible or not. A mixed amount containing only
|
|
|
|
convertible commodities can be converted to a simple amount. Arithmetic
|
|
|
|
examples:
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2007-03-13 07:11:39 +03:00
|
|
|
$1 - $5 = $-4
|
|
|
|
$1 + EUR 0.76 = $2
|
|
|
|
EUR0.76 + $1 = EUR 1.52
|
|
|
|
EUR0.76 - $1 = 0
|
|
|
|
($5, 2h) + $1 = ($6, 2h)
|
|
|
|
($50, EUR 3, AAPL 500) + ($13.55, oranges 6) = $67.51, AAPL 500, oranges 6
|
|
|
|
($50, EUR 3) * $-1 = $-53.96
|
|
|
|
($50, AAPL 500) * $-1 = error
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2007-03-13 07:11:39 +03:00
|
|
|
-}
|
|
|
|
|
2008-10-03 04:40:06 +04:00
|
|
|
module Ledger.Amount
|
2008-10-01 04:29:58 +04:00
|
|
|
where
|
2008-10-17 07:14:23 +04:00
|
|
|
import qualified Data.Map as Map
|
2008-10-03 04:05:16 +04:00
|
|
|
import Ledger.Utils
|
2008-10-03 04:12:59 +04:00
|
|
|
import Ledger.Types
|
2008-10-13 01:52:48 +04:00
|
|
|
import Ledger.Commodity
|
2008-10-01 04:29:58 +04:00
|
|
|
|
2008-10-10 05:53:39 +04:00
|
|
|
|
2008-10-15 04:37:38 +04:00
|
|
|
instance Show Amount where show = showAmount
|
2008-10-18 14:38:01 +04:00
|
|
|
instance Show MixedAmount where show = showMixedAmount
|
2007-07-04 05:38:56 +04:00
|
|
|
|
2008-10-18 12:39:08 +04:00
|
|
|
instance Num Amount where
|
|
|
|
abs (Amount c q) = Amount c (abs q)
|
|
|
|
signum (Amount c q) = Amount c (signum q)
|
|
|
|
fromInteger i = Amount (comm "") (fromInteger i)
|
|
|
|
(+) = amountop (+)
|
|
|
|
(-) = amountop (-)
|
|
|
|
(*) = amountop (*)
|
|
|
|
|
|
|
|
instance Num MixedAmount where
|
2008-10-18 14:38:01 +04:00
|
|
|
fromInteger i = Mixed [Amount (comm "") (fromInteger i)]
|
|
|
|
negate (Mixed as) = Mixed $ map negate as
|
|
|
|
(+) (Mixed as) (Mixed bs) = normaliseMixedAmount $ Mixed $ filter (not . isZeroAmount) $ as ++ bs
|
|
|
|
(*) = error "programming error, mixed amounts do not support multiplication"
|
|
|
|
abs = error "programming error, mixed amounts do not support abs"
|
2008-10-18 12:39:08 +04:00
|
|
|
signum = error "programming error, mixed amounts do not support signum"
|
2008-10-18 14:38:01 +04:00
|
|
|
|
|
|
|
amounts :: MixedAmount -> [Amount]
|
|
|
|
amounts (Mixed as) = as
|
2008-10-18 12:39:08 +04:00
|
|
|
|
2008-10-17 07:14:23 +04:00
|
|
|
showMixedAmount :: MixedAmount -> String
|
2008-10-18 14:38:01 +04:00
|
|
|
showMixedAmount m = concat $ intersperse ", " $ map show as
|
|
|
|
where (Mixed as) = normaliseMixedAmount m
|
2008-10-17 07:14:23 +04:00
|
|
|
|
|
|
|
normaliseMixedAmount :: MixedAmount -> MixedAmount
|
2008-10-18 14:38:01 +04:00
|
|
|
normaliseMixedAmount (Mixed as) = Mixed $ map sum $ groupAmountsByCommodity as
|
2008-10-17 07:14:23 +04:00
|
|
|
|
|
|
|
groupAmountsByCommodity :: [Amount] -> [[Amount]]
|
|
|
|
groupAmountsByCommodity as = grouped
|
|
|
|
where
|
|
|
|
grouped = [filter (hassymbol s) as | s <- symbols]
|
|
|
|
hassymbol s a = s == (symbol $ commodity a)
|
|
|
|
symbols = sort $ nub $ map (symbol . commodity) as
|
|
|
|
|
2008-10-13 01:52:48 +04:00
|
|
|
-- | Get the string representation of an amount, based on its commodity's
|
|
|
|
-- display settings.
|
2008-10-15 04:37:38 +04:00
|
|
|
showAmount :: Amount -> String
|
2008-10-15 23:54:35 +04:00
|
|
|
showAmount (Amount (Commodity {symbol=sym,side=side,spaced=spaced,comma=comma,precision=p}) q)
|
2008-10-16 07:55:38 +04:00
|
|
|
| sym=="AUTO" = ""
|
2008-10-13 01:52:48 +04:00
|
|
|
| side==L = printf "%s%s%s" sym space quantity
|
|
|
|
| side==R = printf "%s%s%s" quantity space sym
|
|
|
|
where
|
|
|
|
space = if spaced then " " else ""
|
2008-10-15 23:54:35 +04:00
|
|
|
quantity = commad $ printf ("%."++show p++"f") q
|
|
|
|
commad = if comma then punctuatethousands else id
|
2008-10-15 05:06:05 +04:00
|
|
|
|
|
|
|
-- | Add thousands-separating commas to a decimal number string
|
|
|
|
punctuatethousands :: String -> String
|
|
|
|
punctuatethousands s =
|
|
|
|
sign ++ (addcommas int) ++ frac
|
|
|
|
where
|
|
|
|
(sign,num) = break isDigit s
|
|
|
|
(int,frac) = break (=='.') num
|
|
|
|
addcommas = reverse . concat . intersperse "," . triples . reverse
|
|
|
|
triples [] = []
|
|
|
|
triples l = [take 3 l] ++ (triples $ drop 3 l)
|
2007-07-04 05:38:56 +04:00
|
|
|
|
2008-10-18 13:02:19 +04:00
|
|
|
-- -- | Get the string representation of an amount, rounded, or showing just "0" if it's zero.
|
|
|
|
-- showAmountOrZero :: Amount -> String
|
|
|
|
-- showAmountOrZero a
|
|
|
|
-- | isZeroAmount a = "0"
|
|
|
|
-- | otherwise = showAmount a
|
2008-10-03 12:21:35 +04:00
|
|
|
|
2008-10-18 12:39:08 +04:00
|
|
|
-- | Get the string representation of an amount, rounded, or showing just "0" if it's zero.
|
|
|
|
showMixedAmountOrZero :: MixedAmount -> String
|
|
|
|
showMixedAmountOrZero a
|
|
|
|
| isZeroMixedAmount a = "0"
|
|
|
|
| otherwise = showMixedAmount a
|
|
|
|
|
2008-10-03 12:21:35 +04:00
|
|
|
-- | is this amount zero, when displayed with its given precision ?
|
|
|
|
isZeroAmount :: Amount -> Bool
|
2008-10-13 01:52:48 +04:00
|
|
|
isZeroAmount a@(Amount c _ ) = nonzerodigits == ""
|
2008-10-15 11:06:02 +04:00
|
|
|
where nonzerodigits = filter (`elem` "123456789") $ showAmount a
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2008-10-17 07:14:23 +04:00
|
|
|
isZeroMixedAmount :: MixedAmount -> Bool
|
2008-10-18 14:38:01 +04:00
|
|
|
isZeroMixedAmount = all isZeroAmount . amounts . normaliseMixedAmount
|
2008-10-17 07:14:23 +04:00
|
|
|
|
2008-10-03 15:15:03 +04:00
|
|
|
-- | Apply a binary arithmetic operator to two amounts, converting to the
|
2008-10-13 01:52:48 +04:00
|
|
|
-- second one's commodity and adopting the lowest precision. (Using the
|
|
|
|
-- second commodity means that folds (like sum [Amount]) will preserve the
|
|
|
|
-- commodity.)
|
2007-07-04 05:38:56 +04:00
|
|
|
amountop :: (Double -> Double -> Double) -> Amount -> Amount -> Amount
|
2008-10-13 01:52:48 +04:00
|
|
|
amountop op a@(Amount ac aq) b@(Amount bc bq) =
|
2008-10-15 06:11:30 +04:00
|
|
|
Amount bc ((quantity $ convertAmountTo bc a) `op` bq)
|
|
|
|
|
|
|
|
-- | Convert an amount to the specified commodity using the appropriate
|
|
|
|
-- exchange rate.
|
|
|
|
convertAmountTo :: Commodity -> Amount -> Amount
|
|
|
|
convertAmountTo c2 (Amount c1 q) = Amount c2 (q * conversionRate c1 c2)
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2008-10-18 14:38:01 +04:00
|
|
|
nullamt :: MixedAmount
|
|
|
|
nullamt = Mixed []
|
2008-10-15 06:11:30 +04:00
|
|
|
|
2008-10-13 01:52:48 +04:00
|
|
|
-- temporary value for partial entries
|
2008-10-18 14:38:01 +04:00
|
|
|
autoamt :: MixedAmount
|
2008-10-18 14:46:49 +04:00
|
|
|
autoamt = Mixed [Amount (Commodity {symbol="AUTO",side=L,spaced=False,comma=False,precision=0}) 0]
|