X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep206.php;h=9d184556b11c08d4e9bbd711c36aa9cd01b410d8;hb=92f26ce5c76266a8b6e96a6b086aa919095e7316;hp=79f4f1f3b40338eeac0db6085069661037056eb7;hpb=0ce53780d575e7bf4eefaa1b7edc0603131cc2b3;p=fa-stable.git diff --git a/reporting/rep206.php b/reporting/rep206.php index 79f4f1f3..9d184556 100644 --- a/reporting/rep206.php +++ b/reporting/rep206.php @@ -149,13 +149,9 @@ function print_supplier_balances() $rate = $convert ? get_exchange_rate_from_home_currency($myrow['curr_code'], Today()) : 1; $bal = get_open_balance($myrow['supplier_id'], $from); $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); + $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];