Skip to content

Commit

Permalink
fix(frozen period): remove excess calculation of net income
Browse files Browse the repository at this point in the history
Net income was already included in one of the illiquid cash flow categories.
  • Loading branch information
KennethTrecy committed May 19, 2024
1 parent 1e8278c commit e5d818f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Controllers/FrozenPeriodController.php
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,7 @@ function ($previous_total, $calculation) {
function ($previous_total, $calculation) {
return $previous_total->plus($calculation["subtotal"]);
},
$opened_liquid_amount->plus($income_statement_total)
$opened_liquid_amount
);
}

Expand Down

0 comments on commit e5d818f

Please sign in to comment.