X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep101.php;h=667604c86c32621c7f72cd7e67ca95b5ce35c719;hb=1b9208f6334e4371fa433d3b6cdc506ae0f95f98;hp=a9bd160952a62fd429b483cefb9f41c29a7515c0;hpb=6e555e4e06be1743570f7987d619448639650d8b;p=fa-stable.git diff --git a/reporting/rep101.php b/reporting/rep101.php index a9bd1609..667604c8 100644 --- a/reporting/rep101.php +++ b/reporting/rep101.php @@ -171,12 +171,9 @@ function print_customer_balances() $rate = $convert ? get_exchange_rate_from_home_currency($myrow['curr_code'], Today()) : 1; $bal = get_open_balance($myrow['debtor_no'], $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[1] = round2(abs($bal['credits']*$rate), $dec); $init[2] = round2($bal['Allocated']*$rate, $dec); if ($show_balance) { @@ -238,7 +235,7 @@ function print_customer_balances() } else { - $item[1] = round2(Abs($trans['TotalAmount']) * $rate, $dec); + $item[1] = round2(abs($trans['TotalAmount']) * $rate, $dec); $rep->AmountCol(5, 6, $item[1], $dec); $accumulate -= $item[1]; $item[2] = round2($trans['Allocated'] * $rate, $dec) * -1;