products); $i<$n; $i++) {
echo ' ' . "\n" .
' | ' . $order->products[$i]['qty'] . ' x | ' . "\n" .
' ' . $order->products[$i]['name'];
if (STOCK_CHECK == 'true') {
echo tep_check_stock($order->products[$i]['id'], $order->products[$i]['qty']);
}
if ( (isset($order->products[$i]['attributes'])) && (sizeof($order->products[$i]['attributes']) > 0) ) {
for ($j=0, $n2=sizeof($order->products[$i]['attributes']); $j<$n2; $j++) {
echo ' - ' . $order->products[$i]['attributes'][$j]['option'] . ': ' . $order->products[$i]['attributes'][$j]['value'] . '';
}
}
echo ' | ' . "\n";
if (sizeof($order->info['tax_groups']) > 1) echo ' ' . tep_display_tax_value($order->products[$i]['tax']) . '% | ' . "\n";
echo ' ' . $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']) . ' | ' . "\n" .
' ' . "\n";
}
?>
process();
echo $order_total_modules->output();
}
?>
|
|