From 61f6735ceb078c4b52904bc369789f2e4feb1ecb Mon Sep 17 00:00:00 2001 From: Andrew Malsbury Date: Wed, 22 Nov 2023 16:31:14 +0000 Subject: [PATCH] added missing currency variable --- report_collections.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/report_collections.php b/report_collections.php index 19973c0f..480ba278 100644 --- a/report_collections.php +++ b/report_collections.php @@ -57,6 +57,9 @@ ORDER BY months_behind DESC;"; $result_client_balance_report = mysqli_query($mysqli, $sql_client_balance_report); + + //get currency format from settings + $config_currency_code = getSettingValue($mysqli, "company_currency"); ?>
@@ -97,11 +100,11 @@ echo ""; echo "$client_name"; - echo "$formatted_balance"; + echo "$formatted_balance"; echo "$billing_contact_phone"; - echo "$formatted_recurring_monthly_total"; - echo "$formatted_behind_amount"; - echo "$months_behind"; + echo "$formatted_recurring_monthly_total"; + echo "$formatted_behind_amount"; + echo "$months_behind"; echo ""; } ?>