;dev: is: code notes

This commit is contained in:
Simon Michael 2021-11-25 11:47:27 -10:00
parent 4504c173fb
commit aba46874f2

View File

@ -43,3 +43,20 @@ incomestatementmode = compoundBalanceCommandMode incomestatementSpec
incomestatement :: CliOpts -> Journal -> IO ()
incomestatement = compoundBalanceCommand incomestatementSpec
{-
Summary of code flow, 2021-11:
incomestatement
compoundBalanceCommand
compoundBalanceReport
compoundBalanceReportWith
colps = getPostingsByColumn
startps = startingPostings
generateSubreport
startbals = startingBalances (startps restricted to this subreport)
generateMultiBalanceReport startbals (colps restricted to this subreport)
matrix = calculateReportMatrix startbals colps
displaynames = displayedAccounts
buildReportRows displaynames matrix
-}