X-Git-Url: https://delta.frontaccounting.com/gitweb/?p=fa-stable.git;a=blobdiff_plain;f=reporting%2Frep201.php;h=88db421d46639433a7f4747c08b6d6026ed9e461;hp=d5c5608b18dde18e543f6584f2a34e8a15324106;hb=0ce53780d575e7bf4eefaa1b7edc0603131cc2b3;hpb=220f68cab16f746b276c7eaefba368ce6654178a diff --git a/reporting/rep201.php b/reporting/rep201.php index d5c5608b..88db421d 100644 --- a/reporting/rep201.php +++ b/reporting/rep201.php @@ -149,7 +149,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);