{$msg.product.product_name} |
{$msg.product.product_price} |
{$msg.product.product_quantity} |
{$msg.cart.total} |
{foreach from=$order_items item="order_item"}
{$order_item.title|htmlspecialchars} |
{$order_item.product_price|price}
{if $order_item.is_taxable == "No"}
({$msg.cart.not_taxable})
{else}
{$msg.cart.tax_rate}:
{if $order_item.tax_description != ""}
{$order_item.tax_description}
{else}
{math equation="round(x,2)" x=$order_item.tax_rate format="%0.2f"}%
{/if}
{if $DisplayPricesWithTax=="YES"} - {$msg.cart.included_in_price}{/if}
{/if}
|
{$order_item.quantity} |
{$order_item.product_total|price} |
{/foreach}
{** subtotal **}
{$msg.cart.subtotal_amount} : |
{if $DisplayPricesWithTax == "YES"}{$order->subtotalAmountWithTax|price}{else}{$order->subtotalAmount|price}{/if}
|
{** discount **}
{if $order->discountAmount > 0}
{$msg.cart.discount_amount}
{**
{if $order->discountType == "percent"}
(-{$order->discountValue|smartround}%)
{/if}
**}
:
|
{if $order->discountAmount > 0}-{/if} {$order->discountAmount|price}
|
{/if}
{** promo **}
{if $order->promoDiscountType != "none" && $order->promoDiscountAmount > 0}
{$msg.cart.promo_code_discount}
{**
{if $order->promoDiscountType == "percent"}
(-{$order->promoDiscountValue|smartround}%)
{/if}
**}
:
|
- {$order->promoDiscountAmount|price} |
{/if}
{** handling **}
{if $order->handlingSeparated && $order->handlingAmount > 0}
{$order->handlingText|htmlspecialchars}
{**
{if $order->handlingTaxable && $order->handlingTaxAmount > 0}
({$msg.cart.shipping_taxable} {if $order->handlingTaxDescription != ""}{$order->handlingTaxDescription}{/if})
{/if}
**}
:
|
{$order->handlingAmount|price} |
{/if}
{** shipping **}
{if $ShippingCalcEnabled == "YES"}
{$ShippingLabel|htmlspecialchars}
({$order->shippingCMName|htmlspecialchars}{**{if $order->shippingTaxable}; {$msg.cart.shipping_taxable} - {$order->shippingTaxDescription}{/if}**}) :
|
{$order->shippingAmount|price} |
{/if}
{** tax **}
{$msg.cart.tax_amount} : |
{$order->taxAmount|price} |
{** total **}
{$msg.cart.total_amount} : |
{$order->totalAmount|price}
|