2012-11-20 01:20:10 +04:00
|
|
|
{-# LANGUAGE StandaloneDeriving, RecordWildCards #-}
|
2008-10-01 04:29:58 +04:00
|
|
|
{-|
|
2011-08-31 21:22:53 +04:00
|
|
|
A simple 'Amount' is some quantity of money, shares, or anything else.
|
|
|
|
It has a (possibly null) 'Commodity' and a numeric quantity:
|
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
|
2009-12-13 00:10:39 +03:00
|
|
|
90 apples
|
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
|
|
|
|
2011-08-31 21:22:53 +04:00
|
|
|
It may also have an assigned 'Price', representing this amount's per-unit
|
|
|
|
or total cost in a different commodity. If present, this is rendered like
|
|
|
|
so:
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2011-08-31 21:22:53 +04:00
|
|
|
EUR 2 \@ $1.50 (unit price)
|
|
|
|
EUR 2 \@\@ $3 (total price)
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2011-08-31 21:22:53 +04:00
|
|
|
A 'MixedAmount' is zero or more simple amounts, so can represent multiple
|
2011-08-30 17:16:30 +04:00
|
|
|
commodities; this is the type most often used:
|
2009-11-25 16:31:08 +03:00
|
|
|
|
|
|
|
@
|
2011-08-30 17:16:30 +04:00
|
|
|
0
|
2009-12-13 00:10:39 +03:00
|
|
|
$50 + EUR 3
|
|
|
|
16h + $13.55 + AAPL 500 + 6 oranges
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2009-11-25 16:31:08 +03:00
|
|
|
|
2011-08-30 17:16:30 +04:00
|
|
|
When a mixed amount has been \"normalised\", it has no more than one amount
|
|
|
|
in each commodity and no zero amounts; or it has just a single zero amount
|
|
|
|
and no others.
|
|
|
|
|
2011-08-31 21:22:53 +04:00
|
|
|
Limited arithmetic with simple and mixed amounts is supported, best used
|
|
|
|
with similar amounts since it mostly ignores assigned prices and commodity
|
|
|
|
exchange rates.
|
2009-11-25 16:31:08 +03:00
|
|
|
|
2007-03-13 07:11:39 +03:00
|
|
|
-}
|
|
|
|
|
2010-12-27 23:26:22 +03:00
|
|
|
module Hledger.Data.Amount (
|
2011-08-31 20:54:10 +04:00
|
|
|
-- * Amount
|
2012-11-20 01:20:10 +04:00
|
|
|
amount,
|
2011-08-31 20:54:10 +04:00
|
|
|
nullamt,
|
2012-05-27 22:14:20 +04:00
|
|
|
missingamt,
|
2012-11-20 06:22:20 +04:00
|
|
|
num,
|
2012-11-20 01:20:10 +04:00
|
|
|
usd,
|
|
|
|
eur,
|
|
|
|
gbp,
|
|
|
|
hrs,
|
|
|
|
at,
|
|
|
|
(@@),
|
2011-09-02 04:42:41 +04:00
|
|
|
amountWithCommodity,
|
2011-08-31 20:54:10 +04:00
|
|
|
-- ** arithmetic
|
|
|
|
costOfAmount,
|
|
|
|
divideAmount,
|
2012-11-12 20:31:43 +04:00
|
|
|
sumAmounts,
|
2011-08-31 20:54:10 +04:00
|
|
|
-- ** rendering
|
2012-11-20 01:20:10 +04:00
|
|
|
amountstyle,
|
2011-08-31 20:54:10 +04:00
|
|
|
showAmount,
|
|
|
|
showAmountDebug,
|
|
|
|
showAmountWithoutPrice,
|
|
|
|
maxprecision,
|
|
|
|
maxprecisionwithpoint,
|
2012-11-20 01:20:10 +04:00
|
|
|
setAmountPrecision,
|
|
|
|
withPrecision,
|
|
|
|
canonicaliseAmount,
|
|
|
|
canonicalStyles,
|
2011-08-31 20:54:10 +04:00
|
|
|
-- * MixedAmount
|
|
|
|
nullmixedamt,
|
2012-05-27 22:14:20 +04:00
|
|
|
missingmixedamt,
|
2012-11-20 03:17:55 +04:00
|
|
|
mixed,
|
2011-08-31 20:54:10 +04:00
|
|
|
amounts,
|
2012-01-01 04:39:13 +04:00
|
|
|
normaliseMixedAmountPreservingFirstPrice,
|
2012-11-12 20:31:43 +04:00
|
|
|
normaliseMixedAmountPreservingPrices,
|
2011-08-31 20:54:10 +04:00
|
|
|
-- ** arithmetic
|
|
|
|
costOfMixedAmount,
|
|
|
|
divideMixedAmount,
|
|
|
|
isNegativeMixedAmount,
|
|
|
|
isZeroMixedAmount,
|
2013-06-02 00:39:00 +04:00
|
|
|
isReallyZeroMixedAmount,
|
2011-08-31 20:54:10 +04:00
|
|
|
isReallyZeroMixedAmountCost,
|
|
|
|
-- ** rendering
|
|
|
|
showMixedAmount,
|
|
|
|
showMixedAmountDebug,
|
|
|
|
showMixedAmountWithoutPrice,
|
|
|
|
showMixedAmountWithPrecision,
|
2012-11-20 01:20:10 +04:00
|
|
|
setMixedAmountPrecision,
|
|
|
|
canonicaliseMixedAmount,
|
2011-08-31 20:54:10 +04:00
|
|
|
-- * misc.
|
2012-11-12 20:31:43 +04:00
|
|
|
ltraceamount,
|
2011-08-31 20:54:10 +04:00
|
|
|
tests_Hledger_Data_Amount
|
|
|
|
) where
|
|
|
|
|
2011-05-28 08:11:44 +04:00
|
|
|
import Data.Char (isDigit)
|
|
|
|
import Data.List
|
2010-11-15 02:29:04 +03:00
|
|
|
import Data.Map (findWithDefault)
|
2012-11-20 01:20:10 +04:00
|
|
|
import Data.Ord (comparing)
|
2011-05-28 08:11:44 +04:00
|
|
|
import Test.HUnit
|
|
|
|
import Text.Printf
|
2012-11-20 01:20:10 +04:00
|
|
|
import qualified Data.Map as M
|
2010-11-15 02:29:04 +03:00
|
|
|
|
2010-05-20 03:08:53 +04:00
|
|
|
import Hledger.Data.Types
|
|
|
|
import Hledger.Data.Commodity
|
2011-05-28 08:11:44 +04:00
|
|
|
import Hledger.Utils
|
2008-10-01 04:29:58 +04:00
|
|
|
|
2008-10-10 05:53:39 +04:00
|
|
|
|
2009-12-09 23:51:00 +03:00
|
|
|
deriving instance Show HistoricalPrice
|
2007-07-04 05:38:56 +04:00
|
|
|
|
2012-11-20 01:20:10 +04:00
|
|
|
amountstyle = AmountStyle L False 0 '.' ',' []
|
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
-- Amount
|
|
|
|
|
2013-12-07 01:51:19 +04:00
|
|
|
instance Show Amount where
|
|
|
|
show _a@Amount{..}
|
|
|
|
-- debugLevel < 3 = showAmountWithoutPrice a
|
|
|
|
-- debugLevel < 6 = showAmount a
|
|
|
|
| debugLevel < 9 =
|
|
|
|
printf "Amount {acommodity=%s, aquantity=%s, ..}" (show acommodity) (show aquantity)
|
|
|
|
| otherwise = --showAmountDebug a
|
|
|
|
printf "Amount {acommodity=%s, aquantity=%s, aprice=%s, astyle=%s}" (show acommodity) (show aquantity) (showPriceDebug aprice) (show astyle)
|
2011-08-31 20:54:10 +04:00
|
|
|
|
2008-10-18 12:39:08 +04:00
|
|
|
instance Num Amount where
|
2012-11-20 01:20:10 +04:00
|
|
|
abs a@Amount{aquantity=q} = a{aquantity=abs q}
|
|
|
|
signum a@Amount{aquantity=q} = a{aquantity=signum q}
|
|
|
|
fromInteger i = nullamt{aquantity=fromInteger i}
|
|
|
|
negate a@Amount{aquantity=q} = a{aquantity=(-q)}
|
|
|
|
(+) = similarAmountsOp (+)
|
|
|
|
(-) = similarAmountsOp (-)
|
|
|
|
(*) = similarAmountsOp (*)
|
2008-10-18 12:39:08 +04:00
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
-- | The empty simple amount.
|
2012-11-20 02:39:08 +04:00
|
|
|
amount, nullamt :: Amount
|
|
|
|
amount = Amount{acommodity="", aquantity=0, aprice=NoPrice, astyle=amountstyle}
|
2012-11-20 01:20:10 +04:00
|
|
|
nullamt = amount
|
|
|
|
|
|
|
|
-- handy amount constructors for tests
|
2012-11-20 06:22:20 +04:00
|
|
|
num n = amount{acommodity="", aquantity=n}
|
2012-11-20 01:20:10 +04:00
|
|
|
usd n = amount{acommodity="$", aquantity=n, astyle=amountstyle{asprecision=2}}
|
|
|
|
eur n = amount{acommodity="€", aquantity=n, astyle=amountstyle{asprecision=2}}
|
|
|
|
gbp n = amount{acommodity="£", aquantity=n, astyle=amountstyle{asprecision=2}}
|
|
|
|
hrs n = amount{acommodity="h", aquantity=n, astyle=amountstyle{asprecision=1, ascommodityside=R}}
|
|
|
|
|
|
|
|
-- | Apply a binary arithmetic operator to two amounts in the same
|
|
|
|
-- commodity. Warning, as a kludge to support folds (eg sum) we assign
|
|
|
|
-- the second's commodity to the first so the same commodity requirement
|
|
|
|
-- is not checked. The highest precision of either amount is preserved in
|
|
|
|
-- the result. Any prices are currently ignored and discarded. The display
|
|
|
|
-- style is that of the first amount, with precision set to the highest of
|
|
|
|
-- either amount.
|
2011-04-22 17:44:08 +04:00
|
|
|
similarAmountsOp :: (Double -> Double -> Double) -> Amount -> Amount -> Amount
|
2012-11-20 01:20:10 +04:00
|
|
|
similarAmountsOp op Amount{acommodity=_, aquantity=aq, astyle=AmountStyle{asprecision=ap}}
|
|
|
|
Amount{acommodity=bc, aquantity=bq, astyle=bs@AmountStyle{asprecision=bp}} =
|
|
|
|
-- trace ("a:"++showAmount a) $ trace ("b:"++showAmount b++"\n") $ tracewith (("=:"++).showAmount)
|
|
|
|
amount{acommodity=bc, aquantity=aq `op` bq, astyle=bs{asprecision=max ap bp}}
|
2012-11-20 03:36:36 +04:00
|
|
|
-- ac==bc = amount{acommodity=ac, aquantity=aq `op` bq, astyle=as{asprecision=max ap bp}}
|
|
|
|
-- otherwise = error "tried to do simple arithmetic with amounts in different commodities"
|
2011-04-22 17:44:08 +04:00
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
-- | Convert an amount to the specified commodity, ignoring and discarding
|
|
|
|
-- any assigned prices and assuming an exchange rate of 1.
|
2011-09-02 04:42:41 +04:00
|
|
|
amountWithCommodity :: Commodity -> Amount -> Amount
|
2012-11-20 02:39:08 +04:00
|
|
|
amountWithCommodity c a = a{acommodity=c, aprice=NoPrice}
|
2010-02-04 19:40:30 +03:00
|
|
|
|
2012-11-12 20:31:43 +04:00
|
|
|
-- | A more complete amount adding operation.
|
|
|
|
sumAmounts :: [Amount] -> MixedAmount
|
|
|
|
sumAmounts = normaliseMixedAmountPreservingPrices . Mixed
|
|
|
|
|
2012-11-20 01:20:10 +04:00
|
|
|
-- | Set an amount's unit price.
|
|
|
|
at :: Amount -> Amount -> Amount
|
2012-11-20 03:17:55 +04:00
|
|
|
amt `at` priceamt = amt{aprice=UnitPrice priceamt}
|
2012-11-20 01:20:10 +04:00
|
|
|
|
|
|
|
-- | Set an amount's total price.
|
|
|
|
(@@) :: Amount -> Amount -> Amount
|
2012-11-20 03:17:55 +04:00
|
|
|
amt @@ priceamt = amt{aprice=TotalPrice priceamt}
|
2012-11-20 01:20:10 +04:00
|
|
|
|
2012-11-12 20:31:43 +04:00
|
|
|
tests_sumAmounts = [
|
|
|
|
"sumAmounts" ~: do
|
|
|
|
-- when adding, we don't convert to the price commodity - just
|
|
|
|
-- combine what amounts we can.
|
|
|
|
-- amounts with same unit price
|
2012-11-20 01:20:10 +04:00
|
|
|
sumAmounts [usd 1 `at` eur 1, usd 1 `at` eur 1] `is` Mixed [usd 2 `at` eur 1]
|
2012-11-12 20:31:43 +04:00
|
|
|
-- amounts with different unit prices
|
|
|
|
-- amounts with total prices
|
2012-11-20 01:20:10 +04:00
|
|
|
sumAmounts [usd 1 @@ eur 1, usd 1 @@ eur 1] `is` Mixed [usd 1 @@ eur 1, usd 1 @@ eur 1]
|
2012-11-12 20:31:43 +04:00
|
|
|
-- amounts with no, unit, and/or total prices
|
|
|
|
]
|
|
|
|
|
2011-08-30 17:16:30 +04:00
|
|
|
-- | Convert an amount to the commodity of its assigned price, if any. Notes:
|
2011-08-31 21:44:31 +04:00
|
|
|
--
|
2011-04-22 17:44:08 +04:00
|
|
|
-- - price amounts must be MixedAmounts with exactly one component Amount (or there will be a runtime error)
|
2011-08-31 21:44:31 +04:00
|
|
|
--
|
2011-04-22 17:44:08 +04:00
|
|
|
-- - price amounts should be positive, though this is not currently enforced
|
2008-11-22 23:32:58 +03:00
|
|
|
costOfAmount :: Amount -> Amount
|
2012-11-20 01:20:10 +04:00
|
|
|
costOfAmount a@Amount{aquantity=q, aprice=price} =
|
2011-04-22 17:40:55 +04:00
|
|
|
case price of
|
2012-11-20 02:39:08 +04:00
|
|
|
NoPrice -> a
|
2012-11-20 03:17:55 +04:00
|
|
|
UnitPrice p@Amount{aquantity=pq} -> p{aquantity=pq * q}
|
|
|
|
TotalPrice p@Amount{aquantity=pq} -> p{aquantity=pq * signum q}
|
2008-10-15 05:06:05 +04:00
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
-- | Divide an amount's quantity by a constant.
|
|
|
|
divideAmount :: Amount -> Double -> Amount
|
2012-11-20 01:20:10 +04:00
|
|
|
divideAmount a@Amount{aquantity=q} d = a{aquantity=q/d}
|
2011-08-31 20:54:10 +04:00
|
|
|
|
|
|
|
-- | Is this amount negative ? The price is ignored.
|
|
|
|
isNegativeAmount :: Amount -> Bool
|
2012-11-20 01:20:10 +04:00
|
|
|
isNegativeAmount Amount{aquantity=q} = q < 0
|
2011-08-31 20:54:10 +04:00
|
|
|
|
2012-11-14 21:25:02 +04:00
|
|
|
digits = "123456789" :: String
|
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
-- | Does this amount appear to be zero when displayed with its given precision ?
|
|
|
|
isZeroAmount :: Amount -> Bool
|
2012-05-27 22:20:18 +04:00
|
|
|
isZeroAmount a -- a==missingamt = False
|
2012-11-14 21:25:02 +04:00
|
|
|
| otherwise = (null . filter (`elem` digits) . showAmountWithoutPriceOrCommodity) a
|
2011-08-31 20:54:10 +04:00
|
|
|
|
|
|
|
-- | Is this amount "really" zero, regardless of the display precision ?
|
|
|
|
-- Since we are using floating point, for now just test to some high precision.
|
|
|
|
isReallyZeroAmount :: Amount -> Bool
|
2012-05-27 22:20:18 +04:00
|
|
|
isReallyZeroAmount a -- a==missingamt = False
|
2012-11-20 01:20:10 +04:00
|
|
|
| otherwise = (null . filter (`elem` digits) . printf ("%."++show zeroprecision++"f") . aquantity) a
|
2011-08-31 20:54:10 +04:00
|
|
|
where zeroprecision = 8
|
|
|
|
|
2010-11-13 18:10:06 +03:00
|
|
|
-- | Get the string representation of an amount, based on its commodity's
|
|
|
|
-- display settings except using the specified precision.
|
|
|
|
showAmountWithPrecision :: Int -> Amount -> String
|
|
|
|
showAmountWithPrecision p = showAmount . setAmountPrecision p
|
|
|
|
|
2012-11-20 01:20:10 +04:00
|
|
|
-- | Set an amount's display precision.
|
2011-08-30 17:16:30 +04:00
|
|
|
setAmountPrecision :: Int -> Amount -> Amount
|
2012-11-20 01:20:10 +04:00
|
|
|
setAmountPrecision p a@Amount{astyle=s} = a{astyle=s{asprecision=p}}
|
|
|
|
|
|
|
|
-- | Set an amount's display precision, flipped.
|
|
|
|
withPrecision :: Amount -> Int -> Amount
|
|
|
|
withPrecision = flip setAmountPrecision
|
2010-11-13 18:10:06 +03:00
|
|
|
|
2013-12-07 01:51:19 +04:00
|
|
|
-- | Get a string representation of an amount for debugging,
|
|
|
|
-- appropriate to the current debug level. 9 shows maximum detail.
|
2010-03-07 00:47:10 +03:00
|
|
|
showAmountDebug :: Amount -> String
|
2012-11-20 01:20:10 +04:00
|
|
|
showAmountDebug Amount{acommodity="AUTO"} = "(missing)"
|
2013-12-07 01:51:19 +04:00
|
|
|
showAmountDebug Amount{..} = printf "Amount {acommodity=%s, aquantity=%s, aprice=%s, astyle=%s}" (show acommodity) (show aquantity) (showPriceDebug aprice) (show astyle)
|
2010-03-07 00:47:10 +03:00
|
|
|
|
2009-11-25 15:57:30 +03:00
|
|
|
-- | Get the string representation of an amount, without any \@ price.
|
2009-11-25 15:19:02 +03:00
|
|
|
showAmountWithoutPrice :: Amount -> String
|
2012-11-20 02:39:08 +04:00
|
|
|
showAmountWithoutPrice a = showAmount a{aprice=NoPrice}
|
2009-11-25 15:19:02 +03:00
|
|
|
|
2010-11-15 01:44:37 +03:00
|
|
|
-- | Get the string representation of an amount, without any price or commodity symbol.
|
|
|
|
showAmountWithoutPriceOrCommodity :: Amount -> String
|
2012-11-20 02:39:08 +04:00
|
|
|
showAmountWithoutPriceOrCommodity a = showAmount a{acommodity="", aprice=NoPrice}
|
2010-11-15 01:44:37 +03:00
|
|
|
|
2011-04-22 17:40:55 +04:00
|
|
|
showPrice :: Price -> String
|
2012-11-20 02:39:08 +04:00
|
|
|
showPrice NoPrice = ""
|
2012-11-20 03:17:55 +04:00
|
|
|
showPrice (UnitPrice pa) = " @ " ++ showAmount pa
|
|
|
|
showPrice (TotalPrice pa) = " @@ " ++ showAmount pa
|
2011-04-22 17:40:55 +04:00
|
|
|
|
|
|
|
showPriceDebug :: Price -> String
|
2012-11-20 02:39:08 +04:00
|
|
|
showPriceDebug NoPrice = ""
|
2012-11-20 03:17:55 +04:00
|
|
|
showPriceDebug (UnitPrice pa) = " @ " ++ showAmountDebug pa
|
|
|
|
showPriceDebug (TotalPrice pa) = " @@ " ++ showAmountDebug pa
|
2011-04-22 17:40:55 +04:00
|
|
|
|
|
|
|
-- | Get the string representation of an amount, based on its commodity's
|
2011-08-31 21:44:31 +04:00
|
|
|
-- display settings. String representations equivalent to zero are
|
|
|
|
-- converted to just \"0\".
|
2011-04-22 17:40:55 +04:00
|
|
|
showAmount :: Amount -> String
|
2012-11-20 01:20:10 +04:00
|
|
|
showAmount Amount{acommodity="AUTO"} = ""
|
|
|
|
showAmount a@(Amount{acommodity=c, aprice=p, astyle=AmountStyle{..}}) =
|
|
|
|
case ascommodityside of
|
|
|
|
L -> printf "%s%s%s%s" c' space quantity' price
|
|
|
|
R -> printf "%s%s%s%s" quantity' space c' price
|
2011-04-22 17:40:55 +04:00
|
|
|
where
|
|
|
|
quantity = showamountquantity a
|
2012-11-14 21:25:02 +04:00
|
|
|
displayingzero = null $ filter (`elem` digits) $ quantity
|
2012-11-20 01:20:10 +04:00
|
|
|
(quantity',c') | displayingzero = ("0","")
|
|
|
|
| otherwise = (quantity, quoteCommoditySymbolIfNeeded c)
|
|
|
|
space = if (not (null c') && ascommodityspaced) then " " else "" :: String
|
2012-11-20 02:39:08 +04:00
|
|
|
price = showPrice p
|
2011-04-22 17:40:55 +04:00
|
|
|
|
2010-11-13 18:10:06 +03:00
|
|
|
-- | Get the string representation of the number part of of an amount,
|
2011-01-19 15:32:18 +03:00
|
|
|
-- using the display settings from its commodity.
|
2011-04-22 17:40:55 +04:00
|
|
|
showamountquantity :: Amount -> String
|
2012-11-20 01:20:10 +04:00
|
|
|
showamountquantity Amount{aquantity=q, astyle=AmountStyle{asprecision=p, asdecimalpoint=d, asseparator=s, asseparatorpositions=spos}} =
|
2011-01-19 15:32:18 +03:00
|
|
|
punctuatenumber d s spos $ qstr
|
|
|
|
where
|
2011-01-20 03:17:32 +03:00
|
|
|
-- isint n = fromIntegral (round n) == n
|
2011-04-18 10:36:00 +04:00
|
|
|
qstr -- p == maxprecision && isint q = printf "%d" (round q::Integer)
|
2011-01-20 03:17:32 +03:00
|
|
|
| p == maxprecisionwithpoint = printf "%f" q
|
|
|
|
| p == maxprecision = chopdotzero $ printf "%f" q
|
2010-11-13 18:10:06 +03:00
|
|
|
| otherwise = printf ("%."++show p++"f") q
|
2011-01-20 03:17:32 +03:00
|
|
|
|
2011-01-19 15:32:18 +03:00
|
|
|
-- | Replace a number string's decimal point with the specified character,
|
2012-11-20 01:20:10 +04:00
|
|
|
-- and add the specified digit group separators. The last digit group will
|
|
|
|
-- be repeated as needed.
|
2011-01-19 15:32:18 +03:00
|
|
|
punctuatenumber :: Char -> Char -> [Int] -> String -> String
|
|
|
|
punctuatenumber dec sep grps str = sign ++ reverse (addseps sep (extend grps) (reverse int)) ++ frac''
|
|
|
|
where
|
|
|
|
(sign,num) = break isDigit str
|
|
|
|
(int,frac) = break (=='.') num
|
|
|
|
frac' = dropWhile (=='.') frac
|
|
|
|
frac'' | null frac' = ""
|
|
|
|
| otherwise = dec:frac'
|
|
|
|
extend [] = []
|
|
|
|
extend gs = init gs ++ repeat (last gs)
|
|
|
|
addseps _ [] str = str
|
|
|
|
addseps sep (g:gs) str
|
|
|
|
| length str <= g = str
|
|
|
|
| otherwise = let (s,rest) = splitAt g str
|
|
|
|
in s ++ [sep] ++ addseps sep gs rest
|
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
chopdotzero str = reverse $ case reverse str of
|
|
|
|
'0':'.':s -> s
|
|
|
|
s -> s
|
2007-07-04 05:38:56 +04:00
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
-- | For rendering: a special precision value which means show all available digits.
|
|
|
|
maxprecision :: Int
|
|
|
|
maxprecision = 999998
|
2009-05-17 02:54:12 +04:00
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
-- | For rendering: a special precision value which forces display of a decimal point.
|
|
|
|
maxprecisionwithpoint :: Int
|
|
|
|
maxprecisionwithpoint = 999999
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2012-11-20 01:20:10 +04:00
|
|
|
-- like journalCanonicaliseAmounts
|
|
|
|
-- | Canonicalise an amount's display style using the provided commodity style map.
|
|
|
|
canonicaliseAmount :: M.Map Commodity AmountStyle -> Amount -> Amount
|
|
|
|
canonicaliseAmount styles a@Amount{acommodity=c, astyle=s} = a{astyle=s'}
|
2011-08-31 20:54:10 +04:00
|
|
|
where
|
2012-11-20 01:20:10 +04:00
|
|
|
s' = findWithDefault s c styles
|
2011-08-31 20:54:10 +04:00
|
|
|
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
-- MixedAmount
|
|
|
|
|
2013-12-07 01:51:19 +04:00
|
|
|
instance Show MixedAmount where
|
|
|
|
show
|
|
|
|
-- debugLevel < 3 = intercalate "\\n" . lines . showMixedAmountWithoutPrice
|
|
|
|
-- debugLevel < 6 = intercalate "\\n" . lines . showMixedAmount
|
|
|
|
| otherwise = showMixedAmountDebug
|
2011-08-31 20:54:10 +04:00
|
|
|
|
|
|
|
instance Num MixedAmount where
|
2012-11-20 01:20:10 +04:00
|
|
|
fromInteger i = Mixed [fromInteger i]
|
2011-08-31 20:54:10 +04:00
|
|
|
negate (Mixed as) = Mixed $ map negate as
|
2012-01-01 04:39:13 +04:00
|
|
|
(+) (Mixed as) (Mixed bs) = normaliseMixedAmountPreservingPrices $ Mixed $ as ++ bs
|
2011-08-31 20:54:10 +04:00
|
|
|
(*) = error' "programming error, mixed amounts do not support multiplication"
|
|
|
|
abs = error' "programming error, mixed amounts do not support abs"
|
|
|
|
signum = error' "programming error, mixed amounts do not support signum"
|
|
|
|
|
|
|
|
-- | The empty mixed amount.
|
|
|
|
nullmixedamt :: MixedAmount
|
|
|
|
nullmixedamt = Mixed []
|
|
|
|
|
|
|
|
-- | A temporary value for parsed transactions which had no amount specified.
|
2012-05-27 22:14:20 +04:00
|
|
|
missingamt :: Amount
|
2012-11-20 01:20:10 +04:00
|
|
|
missingamt = amount{acommodity="AUTO"}
|
2011-08-31 20:54:10 +04:00
|
|
|
|
2012-05-27 22:14:20 +04:00
|
|
|
missingmixedamt :: MixedAmount
|
|
|
|
missingmixedamt = Mixed [missingamt]
|
|
|
|
|
2012-11-20 03:17:55 +04:00
|
|
|
mixed :: Amount -> MixedAmount
|
|
|
|
mixed a = Mixed [a]
|
|
|
|
|
2012-11-12 20:31:43 +04:00
|
|
|
-- | Simplify a mixed amount's component amounts: we can combine amounts
|
|
|
|
-- with the same commodity and unit price. Also remove any zero or missing
|
|
|
|
-- amounts and replace an empty amount list with a single zero amount.
|
2012-01-01 04:39:13 +04:00
|
|
|
normaliseMixedAmountPreservingPrices :: MixedAmount -> MixedAmount
|
|
|
|
normaliseMixedAmountPreservingPrices (Mixed as) = Mixed as''
|
2011-09-04 01:27:37 +04:00
|
|
|
where
|
|
|
|
as'' = if null nonzeros then [nullamt] else nonzeros
|
2012-11-20 01:20:10 +04:00
|
|
|
(_,nonzeros) = partition isReallyZeroAmount as'
|
|
|
|
as' = map sumAmountsUsingFirstPrice $ group $ sort $ filter (/= missingamt) as
|
|
|
|
sort = sortBy (\a1 a2 -> compare (acommodity a1, aprice a1) (acommodity a2, aprice a2))
|
|
|
|
group = groupBy (\a1 a2 -> acommodity a1 == acommodity a2 && sameunitprice a1 a2)
|
2012-11-12 20:31:43 +04:00
|
|
|
where
|
|
|
|
sameunitprice a1 a2 =
|
2012-11-20 01:20:10 +04:00
|
|
|
case (aprice a1, aprice a2) of
|
2012-11-20 02:39:08 +04:00
|
|
|
(NoPrice, NoPrice) -> True
|
|
|
|
(UnitPrice p1, UnitPrice p2) -> p1 == p2
|
2012-11-12 20:31:43 +04:00
|
|
|
_ -> False
|
2011-09-04 01:27:37 +04:00
|
|
|
|
2012-05-27 22:14:20 +04:00
|
|
|
tests_normaliseMixedAmountPreservingPrices = [
|
|
|
|
"normaliseMixedAmountPreservingPrices" ~: do
|
2012-11-20 01:20:10 +04:00
|
|
|
assertEqual "discard missing amount" (Mixed [nullamt]) (normaliseMixedAmountPreservingPrices $ Mixed [usd 0, missingamt])
|
|
|
|
assertEqual "combine unpriced same-commodity amounts" (Mixed [usd 2]) (normaliseMixedAmountPreservingPrices $ Mixed [usd 0, usd 2])
|
2012-11-12 20:31:43 +04:00
|
|
|
assertEqual "don't combine total-priced amounts"
|
|
|
|
(Mixed
|
2012-11-20 01:20:10 +04:00
|
|
|
[usd 1 @@ eur 1
|
|
|
|
,usd (-2) @@ eur 1
|
2012-11-12 20:31:43 +04:00
|
|
|
])
|
|
|
|
(normaliseMixedAmountPreservingPrices $ Mixed
|
2012-11-20 01:20:10 +04:00
|
|
|
[usd 1 @@ eur 1
|
|
|
|
,usd (-2) @@ eur 1
|
2012-11-12 20:31:43 +04:00
|
|
|
])
|
|
|
|
|
2012-05-27 22:14:20 +04:00
|
|
|
]
|
|
|
|
|
2012-01-01 04:39:13 +04:00
|
|
|
-- | Simplify a mixed amount's component amounts: combine amounts with
|
|
|
|
-- the same commodity, using the first amount's price for subsequent
|
|
|
|
-- amounts in each commodity (ie, this function alters the amount and
|
|
|
|
-- is best used as a rendering helper.). Also remove any zero amounts
|
|
|
|
-- and replace an empty amount list with a single zero amount.
|
|
|
|
normaliseMixedAmountPreservingFirstPrice :: MixedAmount -> MixedAmount
|
|
|
|
normaliseMixedAmountPreservingFirstPrice (Mixed as) = Mixed as''
|
2011-08-31 20:54:10 +04:00
|
|
|
where
|
|
|
|
as'' = if null nonzeros then [nullamt] else nonzeros
|
2012-05-27 22:14:20 +04:00
|
|
|
(_,nonzeros) = partition (\a -> isReallyZeroAmount a && a /= missingamt) as'
|
2011-09-04 01:27:37 +04:00
|
|
|
as' = map sumAmountsUsingFirstPrice $ group $ sort as
|
2012-11-20 01:20:10 +04:00
|
|
|
sort = sortBy (\a1 a2 -> compare (acommodity a1) (acommodity a2))
|
|
|
|
group = groupBy (\a1 a2 -> acommodity a1 == acommodity a2)
|
2011-08-31 20:54:10 +04:00
|
|
|
|
2012-01-01 04:39:13 +04:00
|
|
|
-- discardPrice :: Amount -> Amount
|
|
|
|
-- discardPrice a = a{price=Nothing}
|
|
|
|
|
|
|
|
-- discardPrices :: MixedAmount -> MixedAmount
|
|
|
|
-- discardPrices (Mixed as) = Mixed $ map discardPrice as
|
|
|
|
|
2011-09-04 01:27:37 +04:00
|
|
|
sumAmountsUsingFirstPrice [] = nullamt
|
2012-11-20 01:20:10 +04:00
|
|
|
sumAmountsUsingFirstPrice as = (sum as){aprice=aprice $ head as}
|
2010-07-28 03:20:20 +04:00
|
|
|
|
2011-08-30 17:16:30 +04:00
|
|
|
-- | Get a mixed amount's component amounts.
|
2008-10-19 00:27:25 +04:00
|
|
|
amounts :: MixedAmount -> [Amount]
|
|
|
|
amounts (Mixed as) = as
|
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
-- | Convert a mixed amount's component amounts to the commodity of their
|
|
|
|
-- assigned price, if any.
|
|
|
|
costOfMixedAmount :: MixedAmount -> MixedAmount
|
|
|
|
costOfMixedAmount (Mixed as) = Mixed $ map costOfAmount as
|
|
|
|
|
|
|
|
-- | Divide a mixed amount's quantities by a constant.
|
|
|
|
divideMixedAmount :: MixedAmount -> Double -> MixedAmount
|
|
|
|
divideMixedAmount (Mixed as) d = Mixed $ map (flip divideAmount d) as
|
|
|
|
|
|
|
|
-- | Is this mixed amount negative, if it can be normalised to a single commodity ?
|
|
|
|
isNegativeMixedAmount :: MixedAmount -> Maybe Bool
|
|
|
|
isNegativeMixedAmount m = case as of [a] -> Just $ isNegativeAmount a
|
|
|
|
_ -> Nothing
|
2012-01-01 04:39:13 +04:00
|
|
|
where as = amounts $ normaliseMixedAmountPreservingFirstPrice m
|
2011-08-31 20:54:10 +04:00
|
|
|
|
2011-04-22 17:50:05 +04:00
|
|
|
-- | Does this mixed amount appear to be zero when displayed with its given precision ?
|
2008-10-17 07:14:23 +04:00
|
|
|
isZeroMixedAmount :: MixedAmount -> Bool
|
2012-01-01 04:39:13 +04:00
|
|
|
isZeroMixedAmount = all isZeroAmount . amounts . normaliseMixedAmountPreservingFirstPrice
|
2008-10-17 07:14:23 +04:00
|
|
|
|
2009-05-17 02:54:12 +04:00
|
|
|
-- | Is this mixed amount "really" zero ? See isReallyZeroAmount.
|
|
|
|
isReallyZeroMixedAmount :: MixedAmount -> Bool
|
2012-01-01 04:39:13 +04:00
|
|
|
isReallyZeroMixedAmount = all isReallyZeroAmount . amounts . normaliseMixedAmountPreservingFirstPrice
|
2009-05-17 02:54:12 +04:00
|
|
|
|
2010-02-27 21:06:29 +03:00
|
|
|
-- | Is this mixed amount "really" zero, after converting to cost
|
|
|
|
-- commodities where possible ?
|
|
|
|
isReallyZeroMixedAmountCost :: MixedAmount -> Bool
|
|
|
|
isReallyZeroMixedAmountCost = isReallyZeroMixedAmount . costOfMixedAmount
|
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
-- -- | MixedAmount derived Eq instance in Types.hs doesn't know that we
|
|
|
|
-- -- want $0 = EUR0 = 0. Yet we don't want to drag all this code over there.
|
|
|
|
-- -- For now, use this when cross-commodity zero equality is important.
|
2010-12-27 23:26:22 +03:00
|
|
|
-- mixedAmountEquals :: MixedAmount -> MixedAmount -> Bool
|
|
|
|
-- mixedAmountEquals a b = amounts a' == amounts b' || (isZeroMixedAmount a' && isZeroMixedAmount b')
|
2012-01-01 04:39:13 +04:00
|
|
|
-- where a' = normaliseMixedAmountPreservingFirstPrice a
|
|
|
|
-- b' = normaliseMixedAmountPreservingFirstPrice b
|
2009-01-17 21:07:20 +03:00
|
|
|
|
2008-10-19 00:27:25 +04:00
|
|
|
-- | Get the string representation of a mixed amount, showing each of
|
2008-12-05 07:36:32 +03:00
|
|
|
-- its component amounts. NB a mixed amount can have an empty amounts
|
2008-12-10 08:52:26 +03:00
|
|
|
-- list in which case it shows as \"\".
|
2008-10-19 00:27:25 +04:00
|
|
|
showMixedAmount :: MixedAmount -> String
|
2012-11-20 01:20:10 +04:00
|
|
|
showMixedAmount m = vConcatRightAligned $ map showAmount $ amounts $ normaliseMixedAmountPreservingFirstPrice m
|
2010-03-07 00:47:10 +03:00
|
|
|
|
2013-12-07 01:51:19 +04:00
|
|
|
-- | Compact labelled trace of a mixed amount, for debugging.
|
2012-11-12 20:31:43 +04:00
|
|
|
ltraceamount :: String -> MixedAmount -> MixedAmount
|
2013-12-07 01:51:19 +04:00
|
|
|
ltraceamount s = traceWith (((s ++ ": ") ++).showMixedAmount)
|
2012-11-12 20:31:43 +04:00
|
|
|
|
2011-08-30 17:16:30 +04:00
|
|
|
-- | Set the display precision in the amount's commodities.
|
2011-01-20 02:27:11 +03:00
|
|
|
setMixedAmountPrecision :: Int -> MixedAmount -> MixedAmount
|
|
|
|
setMixedAmountPrecision p (Mixed as) = Mixed $ map (setAmountPrecision p) as
|
2010-11-13 18:10:06 +03:00
|
|
|
|
|
|
|
-- | Get the string representation of a mixed amount, showing each of its
|
|
|
|
-- component amounts with the specified precision, ignoring their
|
2011-08-31 21:44:31 +04:00
|
|
|
-- commoditys' display precision settings.
|
2010-11-13 18:10:06 +03:00
|
|
|
showMixedAmountWithPrecision :: Int -> MixedAmount -> String
|
|
|
|
showMixedAmountWithPrecision p m =
|
2012-01-01 04:39:13 +04:00
|
|
|
vConcatRightAligned $ map (showAmountWithPrecision p) $ amounts $ normaliseMixedAmountPreservingFirstPrice m
|
2010-11-13 18:10:06 +03:00
|
|
|
|
2010-03-07 00:47:10 +03:00
|
|
|
-- | Get an unambiguous string representation of a mixed amount for debugging.
|
|
|
|
showMixedAmountDebug :: MixedAmount -> String
|
2012-05-27 22:14:20 +04:00
|
|
|
showMixedAmountDebug m | m == missingmixedamt = "(missing)"
|
|
|
|
| otherwise = printf "Mixed [%s]" as
|
2012-05-27 22:20:18 +04:00
|
|
|
where as = intercalate "\n " $ map showAmountDebug $ amounts m -- normaliseMixedAmountPreservingFirstPrice m
|
2008-10-15 06:11:30 +04:00
|
|
|
|
2009-11-25 15:19:02 +03:00
|
|
|
-- | Get the string representation of a mixed amount, but without
|
2009-11-25 15:57:30 +03:00
|
|
|
-- any \@ prices.
|
2009-11-25 15:19:02 +03:00
|
|
|
showMixedAmountWithoutPrice :: MixedAmount -> String
|
|
|
|
showMixedAmountWithoutPrice m = concat $ intersperse "\n" $ map showfixedwidth as
|
|
|
|
where
|
2012-01-01 04:39:13 +04:00
|
|
|
(Mixed as) = normaliseMixedAmountPreservingFirstPrice $ stripPrices m
|
2012-11-20 02:39:08 +04:00
|
|
|
stripPrices (Mixed as) = Mixed $ map stripprice as where stripprice a = a{aprice=NoPrice}
|
2012-05-27 22:14:20 +04:00
|
|
|
width = maximum $ map (length . showAmount) as
|
2009-11-25 15:19:02 +03:00
|
|
|
showfixedwidth = printf (printf "%%%ds" width) . showAmountWithoutPrice
|
|
|
|
|
2012-11-20 01:20:10 +04:00
|
|
|
-- | Canonicalise a mixed amount's display styles using the provided commodity style map.
|
|
|
|
canonicaliseMixedAmount :: M.Map Commodity AmountStyle -> MixedAmount -> MixedAmount
|
|
|
|
canonicaliseMixedAmount styles (Mixed as) = Mixed $ map (canonicaliseAmount styles) as
|
|
|
|
|
|
|
|
-- | Given a list of amounts in parse order, build a map from commodities
|
|
|
|
-- to canonical display styles for amounts in that commodity.
|
|
|
|
canonicalStyles :: [Amount] -> M.Map Commodity AmountStyle
|
|
|
|
canonicalStyles amts = M.fromList commstyles
|
|
|
|
where
|
|
|
|
samecomm = \a1 a2 -> acommodity a1 == acommodity a2
|
|
|
|
commamts = [(acommodity $ head as, as) | as <- groupBy samecomm $ sortBy (comparing acommodity) amts]
|
|
|
|
commstyles = [(c, s)
|
|
|
|
| (c,as) <- commamts
|
|
|
|
, let styles = map astyle as
|
|
|
|
, let maxprec = maximum $ map asprecision styles
|
|
|
|
, let s = (head styles){asprecision=maxprec}
|
|
|
|
]
|
|
|
|
|
|
|
|
-- lookupStyle :: M.Map Commodity AmountStyle -> Commodity -> AmountStyle
|
|
|
|
-- lookupStyle
|
2010-11-15 02:29:04 +03:00
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
-- misc
|
2010-03-09 07:03:51 +03:00
|
|
|
|
2012-05-27 22:14:20 +04:00
|
|
|
tests_Hledger_Data_Amount = TestList $
|
|
|
|
tests_normaliseMixedAmountPreservingPrices
|
2012-11-12 20:31:43 +04:00
|
|
|
++ tests_sumAmounts
|
2012-05-27 22:14:20 +04:00
|
|
|
++ [
|
2010-03-09 07:03:51 +03:00
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
-- Amount
|
2011-04-22 17:50:05 +04:00
|
|
|
|
2011-08-31 04:40:21 +04:00
|
|
|
"costOfAmount" ~: do
|
2012-11-20 01:20:10 +04:00
|
|
|
costOfAmount (eur 1) `is` eur 1
|
2012-11-20 03:17:55 +04:00
|
|
|
costOfAmount (eur 2){aprice=UnitPrice $ usd 2} `is` usd 4
|
|
|
|
costOfAmount (eur 1){aprice=TotalPrice $ usd 2} `is` usd 2
|
|
|
|
costOfAmount (eur (-1)){aprice=TotalPrice $ usd 2} `is` usd (-2)
|
2010-03-09 07:11:23 +03:00
|
|
|
|
2011-08-31 04:40:21 +04:00
|
|
|
,"isZeroAmount" ~: do
|
2012-11-20 01:20:10 +04:00
|
|
|
assertBool "" $ isZeroAmount $ amount
|
|
|
|
assertBool "" $ isZeroAmount $ usd 0
|
2011-08-31 04:40:21 +04:00
|
|
|
|
|
|
|
,"negating amounts" ~: do
|
2012-11-20 01:20:10 +04:00
|
|
|
let a = usd 1
|
|
|
|
negate a `is` a{aquantity=(-1)}
|
2012-11-20 03:17:55 +04:00
|
|
|
let b = (usd 1){aprice=UnitPrice $ eur 2}
|
2012-11-20 01:20:10 +04:00
|
|
|
negate b `is` b{aquantity=(-1)}
|
2010-03-09 07:03:51 +03:00
|
|
|
|
2012-11-12 20:31:43 +04:00
|
|
|
,"adding amounts without prices" ~: do
|
2012-11-20 01:20:10 +04:00
|
|
|
let a1 = usd 1.23
|
|
|
|
let a2 = usd (-1.23)
|
|
|
|
let a3 = usd (-1.23)
|
|
|
|
(a1 + a2) `is` usd 0
|
|
|
|
(a1 + a3) `is` usd 0
|
|
|
|
(a2 + a3) `is` usd (-2.46)
|
|
|
|
(a3 + a3) `is` usd (-2.46)
|
|
|
|
sum [a1,a2,a3,-a3] `is` usd 0
|
2011-08-31 04:40:21 +04:00
|
|
|
-- highest precision is preserved
|
2012-11-20 03:24:04 +04:00
|
|
|
let ap1 = usd 1 `withPrecision` 1
|
|
|
|
ap3 = usd 1 `withPrecision` 3
|
2012-11-20 01:20:10 +04:00
|
|
|
(asprecision $ astyle $ sum [ap1,ap3]) `is` 3
|
|
|
|
(asprecision $ astyle $ sum [ap3,ap1]) `is` 3
|
2011-08-31 04:40:21 +04:00
|
|
|
-- adding different commodities assumes conversion rate 1
|
2012-11-20 01:20:10 +04:00
|
|
|
assertBool "" $ isZeroAmount (a1 - eur 1.23)
|
2010-03-09 07:03:51 +03:00
|
|
|
|
2011-08-31 04:40:21 +04:00
|
|
|
,"showAmount" ~: do
|
2012-11-20 01:20:10 +04:00
|
|
|
showAmount (usd 0 + gbp 0) `is` "0"
|
2011-08-31 04:40:21 +04:00
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
-- MixedAmount
|
2010-03-09 07:03:51 +03:00
|
|
|
|
2012-01-01 04:39:13 +04:00
|
|
|
,"normaliseMixedAmountPreservingFirstPrice" ~: do
|
|
|
|
normaliseMixedAmountPreservingFirstPrice (Mixed []) `is` Mixed [nullamt]
|
2012-11-20 01:20:10 +04:00
|
|
|
assertBool "" $ isZeroMixedAmount $ normaliseMixedAmountPreservingFirstPrice
|
|
|
|
(Mixed [usd 10
|
|
|
|
,usd 10 @@ eur 7
|
|
|
|
,usd (-10)
|
|
|
|
,usd (-10) @@ eur 7
|
|
|
|
])
|
2010-12-27 23:26:22 +03:00
|
|
|
|
2011-08-31 04:40:21 +04:00
|
|
|
,"adding mixed amounts" ~: do
|
|
|
|
(sum $ map (Mixed . (\a -> [a]))
|
2012-11-20 01:20:10 +04:00
|
|
|
[usd 1.25
|
2012-11-20 03:24:04 +04:00
|
|
|
,usd (-1) `withPrecision` 0
|
2012-11-20 01:20:10 +04:00
|
|
|
,usd (-0.25)
|
|
|
|
])
|
|
|
|
`is` Mixed [amount{aquantity=0}]
|
|
|
|
|
2012-11-12 20:31:43 +04:00
|
|
|
,"adding mixed amounts with total prices" ~: do
|
|
|
|
(sum $ map (Mixed . (\a -> [a]))
|
2012-11-20 01:20:10 +04:00
|
|
|
[usd 1 @@ eur 1
|
|
|
|
,usd (-2) @@ eur 1
|
2012-11-12 20:31:43 +04:00
|
|
|
])
|
2012-11-20 01:20:10 +04:00
|
|
|
`is` (Mixed [usd 1 @@ eur 1
|
|
|
|
,usd (-2) @@ eur 1
|
2012-11-12 20:31:43 +04:00
|
|
|
])
|
|
|
|
|
2011-08-31 04:40:21 +04:00
|
|
|
,"showMixedAmount" ~: do
|
2012-11-20 01:20:10 +04:00
|
|
|
showMixedAmount (Mixed [usd 1]) `is` "$1.00"
|
|
|
|
showMixedAmount (Mixed [usd 1 `at` eur 2]) `is` "$1.00 @ €2.00"
|
|
|
|
showMixedAmount (Mixed [usd 0]) `is` "0"
|
2011-08-31 04:40:21 +04:00
|
|
|
showMixedAmount (Mixed []) `is` "0"
|
2012-05-27 22:14:20 +04:00
|
|
|
showMixedAmount missingmixedamt `is` ""
|
2010-03-09 07:03:51 +03:00
|
|
|
|
2011-08-31 20:54:10 +04:00
|
|
|
,"showMixedAmountWithoutPrice" ~: do
|
2012-11-20 01:20:10 +04:00
|
|
|
let a = usd 1 `at` eur 2
|
2011-08-31 20:54:10 +04:00
|
|
|
showMixedAmountWithoutPrice (Mixed [a]) `is` "$1.00"
|
|
|
|
showMixedAmountWithoutPrice (Mixed [a, (-a)]) `is` "0"
|
2011-04-22 17:40:55 +04:00
|
|
|
|
2010-03-09 07:03:51 +03:00
|
|
|
]
|