$cust = _('All');
else
$cust = get_customer_name($fromcust);
- $dec = user_price_dec();
+ $dec = user_price_dec();
if ($show_balance) $sb = _('Yes');
else $sb = _('No');
$accumulate = 0;
$rate = $convert ? get_exchange_rate_from_home_currency($myrow['curr_code'], Today()) : 1;
$bal = get_open_balance($myrow['debtor_no'], $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);
$accumulate = 0;
$rate = $convert ? get_exchange_rate_from_home_currency($myrow['curr_code'], Today()) : 1;
$bal = get_open_balance($myrow['debtor_no'], $from, $convert);
- $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);
$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);
$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);
$rep->NewLine();
$rep->NewLine();
$total_supp = $total_qty = 0.0;
- $supplier_name = $trans['supplier_name'];
+ $supplier_name = isset($trans['supplier_name']) ? $trans['supplier_name'] : "";
}
}
if ($supplier_name != '')
$aligns = array('left', 'left', 'left', 'left', 'left', 'left', 'left', 'right');
$usr = get_user($user);
- $user_id = $usr['user_id'];
+ $user_id = isset($usr['user_id']) ? $usr['user_id'] : "";
$params = array( 0 => $comments,
1 => array('text' => _('Period'), 'from' => $from,'to' => $to),
2 => array('text' => _('Type'), 'from' => ($systype != -1 ? $systypes_array[$systype] : _('All')), 'to' => ''),