X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep201.php;h=3b7ee708c7dacdad817dae3be7d6c43669eacedf;hb=92f26ce5c76266a8b6e96a6b086aa919095e7316;hp=d5c5608b18dde18e543f6584f2a34e8a15324106;hpb=393fc0d3cfcbf7de823cc580a1088ce3c8b18a3a;p=fa-stable.git diff --git a/reporting/rep201.php b/reporting/rep201.php index d5c5608b..3b7ee708 100644 --- a/reporting/rep201.php +++ b/reporting/rep201.php @@ -149,17 +149,17 @@ 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); if ($show_balance) { $init[3] = $init[0] - $init[1]; $accumulate += $init[3]; } else - $init[3] = round2($bal['OutStanding']*$rate, $dec); + $init[3] = round2(($bal != false ? $bal['OutStanding'] : 0)*$rate, $dec); $res = getTransactions($myrow['supplier_id'], $from, $to); if ($no_zeros && db_num_rows($res) == 0) continue;