' . "\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'];
if ($attribute['price'] != '0') echo ' (' . $attribute['prefix'] . $osC_Currencies->format($attribute['price'], $product['quantity'], true, $osC_Order->getCurrency(), $osC_Order->getCurrencyValue()) . ')';
echo '';
}
}
echo ' | ' . "\n" .
' ' . $product['model'] . ' | ' . "\n";
echo ' ' . $osC_Tax->displayTaxRateValue($product['tax']) . ' | ' . "\n" .
' ' . $osC_Currencies->format($product['final_price'], 1, 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";
}
?>