ENH gereralize amount lookup function

This commit is contained in:
Nathan Dwarshuis 2023-05-25 00:11:04 -04:00
parent d7117270c9
commit 6117784d0e
2 changed files with 2 additions and 5 deletions

View File

@ -404,7 +404,7 @@ let EntryNumGetter =
ConstN: a constant value
AmountN: the value of the 'Amount' column
-}
< LookupN : Text | ConstN : Double | AmountN | NegAmountN >
< LookupN : Text | ConstN : Double | AmountN : Double >
let EntryTextGetter =
{-

View File

@ -346,10 +346,7 @@ resolveValue :: TxRecord -> EntryNumGetter -> InsertExcept Double
resolveValue TxRecord {trOther, trAmount} s = case s of
(LookupN t) -> readDouble =<< lookupErr SplitValField t trOther
(ConstN c) -> return c
AmountN -> return a
NegAmountN -> return $ negate a
where
a = fromRational trAmount
AmountN m -> return $ (* m) $ fromRational trAmount
resolveAcnt :: TxRecord -> SplitAcnt -> InsertExcept T.Text
resolveAcnt = resolveSplitField AcntField