lib: Hledger.Data.Journal: journalAddPricesFromEquity -> journalInferCosts
This commit is contained in:
parent
440f808b3d
commit
dfea6eaee2
@ -26,7 +26,7 @@ module Hledger.Data.Journal (
|
|||||||
journalCommodityStyles,
|
journalCommodityStyles,
|
||||||
journalToCost,
|
journalToCost,
|
||||||
journalAddInferredEquityPostings,
|
journalAddInferredEquityPostings,
|
||||||
journalAddPricesFromEquity,
|
journalInferCosts,
|
||||||
journalReverse,
|
journalReverse,
|
||||||
journalSetLastReadTime,
|
journalSetLastReadTime,
|
||||||
journalRenumberAccountDeclarations,
|
journalRenumberAccountDeclarations,
|
||||||
@ -881,8 +881,8 @@ journalAddInferredEquityPostings j = journalMapTransactions (transactionAddInfer
|
|||||||
equityAcct = journalConversionAccount j
|
equityAcct = journalConversionAccount j
|
||||||
|
|
||||||
-- | Add inferred transaction prices from equity postings.
|
-- | Add inferred transaction prices from equity postings.
|
||||||
journalAddPricesFromEquity :: Journal -> Either String Journal
|
journalInferCosts :: Journal -> Either String Journal
|
||||||
journalAddPricesFromEquity j = do
|
journalInferCosts j = do
|
||||||
ts <- mapM (transactionAddPricesFromEquity $ jaccounttypes j) $ jtxns j
|
ts <- mapM (transactionAddPricesFromEquity $ jaccounttypes j) $ jtxns j
|
||||||
return j{jtxns=ts}
|
return j{jtxns=ts}
|
||||||
|
|
||||||
|
|||||||
@ -324,7 +324,7 @@ journalFinalise iopts@InputOpts{..} f txt pj = do
|
|||||||
>>= (if auto_ && not (null $ jtxnmodifiers pj)
|
>>= (if auto_ && not (null $ jtxnmodifiers pj)
|
||||||
then journalAddAutoPostings _ioDay balancingopts_ -- Add auto postings if enabled, and account tags if needed
|
then journalAddAutoPostings _ioDay balancingopts_ -- Add auto postings if enabled, and account tags if needed
|
||||||
else pure)
|
else pure)
|
||||||
>>= (if infer_costs_ then journalAddPricesFromEquity else pure) -- Add inferred transaction prices from equity postings, if present
|
>>= (if infer_costs_ then journalInferCosts else pure) -- Add inferred transaction prices from equity postings, if present
|
||||||
>>= journalBalanceTransactions balancingopts_ -- Balance all transactions and maybe check balance assertions.
|
>>= journalBalanceTransactions balancingopts_ -- Balance all transactions and maybe check balance assertions.
|
||||||
<&> (if infer_equity_ then journalAddInferredEquityPostings else id) -- Add inferred equity postings, after balancing and generating auto postings
|
<&> (if infer_equity_ then journalAddInferredEquityPostings else id) -- Add inferred equity postings, after balancing and generating auto postings
|
||||||
<&> journalInferMarketPricesFromTransactions -- infer market prices from commodity-exchanging transactions
|
<&> journalInferMarketPricesFromTransactions -- infer market prices from commodity-exchanging transactions
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user