From f56ea962738951bef13eaa6bfc84d8bc5ca44425 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Sun, 16 Dec 2018 23:23:26 +0100 Subject: [PATCH] Fixed a non well formed numeric value encountered rep102.php --- reporting/rep102.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reporting/rep102.php b/reporting/rep102.php index 7f509f8f..22c2d8a9 100644 --- a/reporting/rep102.php +++ b/reporting/rep102.php @@ -204,7 +204,7 @@ function print_aged_customer_analysis() } foreach ($trans as $i => $value) - $trans[$i] *= $rate; + $trans[$i] = (float)$trans[$i] * $rate; $str = array($trans["Balance"] - $trans["Due"], $trans["Due"]-$trans["Overdue1"], $trans["Overdue1"]-$trans["Overdue2"], -- 2.30.2