X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep206.php;h=9d184556b11c08d4e9bbd711c36aa9cd01b410d8;hb=163b02ed8e20aa75a778f09181c9cba86896643b;hp=1e0685969480b3eec364126a2b1fc291795ace97;hpb=4be5f992b8c7ed512b59ff35c4b1647d92dde21a;p=fa-stable.git diff --git a/reporting/rep206.php b/reporting/rep206.php index 1e068596..9d184556 100644 --- a/reporting/rep206.php +++ b/reporting/rep206.php @@ -148,10 +148,10 @@ 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[0] = round2(abs($bal['charges']*$rate), $dec); - $init[1] = round2(Abs($bal['credits']*$rate), $dec); - $init[2] = round2($bal['Allocated']*$rate, $dec); + $init = array(); + $init[0] = round2(($bal != false ? abs($bal['charges']) : 0)*$rate, $dec); + $init[1] = round2(($bal != false ? abs($bal['credits']) : 0)*$rate, $dec); + $init[2] = round2(($bal != false ? $bal['Allocated'] : 0)*$rate, $dec); $init[3] = $init[1] - $init[0]; $accumulate += $init[3];