' . "\n" .
' | ' . $product['quantity'] . ' x | ' . "\n" .
' ' . $product['name'];
if (isset($product['attributes']) && (sizeof($product['attributes']) > 0)) {
foreach ($product['attributes'] as $attribute) {
echo ' ' . $attribute['option'] . ': ' . $attribute['value'] . '';
}
}
echo ' | ' . "\n" .
' ' . $product['model'] . ' | ' . "\n";
echo ' ' . $osC_Tax->displayTaxRateValue($product['tax']) . ' | ' . "\n" .
' ' . $osC_Currencies->format($product['final_price'], true, $osC_Order->getCurrency(), $osC_Order->getCurrencyValue()) . ' | ' . "\n" .
' ' . $osC_Currencies->displayPriceWithTaxRate($product['final_price'], $product['tax'], 1, $osC_Order->getCurrency(), $osC_Order->getCurrencyValue()) . ' | ' . "\n" .
' ' . $osC_Currencies->format($product['final_price'] * $product['quantity'], true, $osC_Order->getCurrency(), $osC_Order->getCurrencyValue()) . ' | ' . "\n" .
' ' . $osC_Currencies->displayPriceWithTaxRate($product['final_price'], $product['tax'], $product['quantity'], $osC_Order->getCurrency(), $osC_Order->getCurrencyValue()) . ' | ' . "\n";
echo '
' . "\n";
}
?>