include option group name in fax #1054

This commit is contained in:
BDC 2013-04-16 13:49:45 -04:00
parent f49e716b99
commit 40844194fa

View File

@ -26,6 +26,10 @@
continue;
}
$cartPrice += $option->option()->price;
if($option->option()->id_option_parent) {
$optionGroup = Crunchbutton_Option::o($option->option()->id_option_parent);
$food .= "$optionGroup->name: ";
}
$food .= $option->option()->name.', ';
}
$food = substr($food, 0, -2);