From: Joe Hunt Date: Sun, 16 Dec 2018 22:23:26 +0000 (+0100) Subject: Fixed a non well formed numeric value encountered rep102.php X-Git-Url: https://delta.frontaccounting.com/gitweb/?p=fa-stable.git;a=commitdiff_plain;h=f56ea962738951bef13eaa6bfc84d8bc5ca44425 Fixed a non well formed numeric value encountered rep102.php --- 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"],