ADD exports for allocation types

This commit is contained in:
Nathan Dwarshuis 2023-01-29 18:04:24 -05:00
parent c791c5a692
commit acbf193bdc
1 changed files with 9 additions and 2 deletions

View File

@ -190,14 +190,18 @@ let Allocation =
, alloCurrency : CurID
}
let PreAllocation = Allocation Decimal
let PostAllocation = Allocation (Optional Decimal)
let Income =
{ incGross : Decimal
, incCurrency : CurID
, incWhen : DatePat
, incAccount : AcntID
, incPretax : List (Allocation Decimal)
, incPretax : List PreAllocation
, incTaxes : List Tax
, incPosttax : List (Allocation (Optional Decimal))
, incPosttax : List PostAllocation
}
let Expense =
@ -250,4 +254,7 @@ in { CurID
, Bucket
, Budget
, Tax
, Allocation
, PreAllocation
, PostAllocation
}