PHP 7.4 Bugs in some reports.
[fa-stable.git] / reporting / rep206.php
index 1e0685969480b3eec364126a2b1fc291795ace97..79f4f1f3b40338eeac0db6085069661037056eb7 100644 (file)
@@ -148,7 +148,11 @@ function print_supplier_balances()
         $accumulate = 0;
         $rate = $convert ? get_exchange_rate_from_home_currency($myrow['curr_code'], Today()) : 1;
         $bal = get_open_balance($myrow['supplier_id'], $from);
-        $init[0] = $init[1] = 0.0;
+               $init = array();
+               $bal['charges'] = isset($bal['charges']) ? $bal['charges'] : 0;
+               $bal['credits'] = isset($bal['credits']) ? $bal['credits'] : 0;
+               $bal['Allocated'] = isset($bal['Allocated']) ? $bal['Allocated'] : 0;
+               $bal['OutStanding'] = isset($bal['OutStanding']) ? $bal['OutStanding'] : 0;
         $init[0] = round2(abs($bal['charges']*$rate), $dec);
         $init[1] = round2(Abs($bal['credits']*$rate), $dec);
         $init[2] = round2($bal['Allocated']*$rate, $dec);