if($customer['group_id']!=0)
{
$group = $this->get_group($customer['group_id']);
if($group) // group might not exist
{
if($group['discount_type'] == "fixed") {
$customer['group_discount_formula'] = "- ". $group['discount'];
} else {
$customer['group_discount_formula'] = "* ". (float)$group['discount']/100 ;
}
}
}