Customer balances reports: further fixes and cleanups.
[fa-stable.git] / reporting / rep101.php
index a9bd160952a62fd429b483cefb9f41c29a7515c0..667604c86c32621c7f72cd7e67ca95b5ce35c719 100644 (file)
@@ -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;