From e5d818fabe2abfc3db28f1346a61fe8d52233ec7 Mon Sep 17 00:00:00 2001 From: Kenneth Trecy Tobias Date: Sun, 19 May 2024 09:39:43 +0800 Subject: [PATCH] fix(frozen period): remove excess calculation of net income Net income was already included in one of the illiquid cash flow categories. --- app/Controllers/FrozenPeriodController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controllers/FrozenPeriodController.php b/app/Controllers/FrozenPeriodController.php index af69eac..ff40606 100644 --- a/app/Controllers/FrozenPeriodController.php +++ b/app/Controllers/FrozenPeriodController.php @@ -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 ); }