====================================
Order Number:
Payment Method: info['payment_method']; ?>
Date of Order:
Products Ordered:
====================================
products); $i < $n; $i++) {
echo $order->products[$i]['qty'] . ' x ' . $order->products[$i]['name'] . ' (' . $order->products[$i]['model'] . ') = ' . $currencies->format($order->products[$i]['final_price'], true, $order->info['currency'], $order->info['currency_value']);
if (isset($order->products[$i]['attributes']) && (($k = sizeof($order->products[$i]['attributes'])) > 0)) {
for ($j = 0; $j < $k; $j++) {
echo '
- ' . $order->products[$i]['attributes'][$j]['option'] . ': ' . $order->products[$i]['attributes'][$j]['value'];
if ($order->products[$i]['attributes'][$j]['price'] != '0') echo ' (' . $order->products[$i]['attributes'][$j]['prefix'] . $currencies->format($order->products[$i]['attributes'][$j]['price'] * $order->products[$i]['qty'], true, $order->info['currency'], $order->info['currency_value']) . ')';
echo '';
}
}
}
?>
totals); $i < $n; $i++) {
echo $order->totals[$i]['title'] . ' ' . $order->totals[$i]['text'] . '
';
}
?>
Billing Address
====================================
customer['format_id'], $order->customer, 1, '', '
'); ?>
customer['telephone']; ?>
customer['email_address'] . '">' . $order->customer['email_address'] . ''; ?>
Shipping Address:
====================================
delivery['format_id'], $order->delivery, 1, '', '
'); ?>