Billing Address
|
{if $order->paymentGatewayId != "paypalec"}
{$billing_address.fname|htmlspecialchars} {$billing_address.lname|htmlspecialchars}
{if $billing_address.company != ""}
{$billing_address.company|htmlspecialchars}
{/if}
{$billing_address.address1|htmlspecialchars}{if $billing_address.address2 != ""} {$billing_address.address2|htmlspecialchars}{/if}
{$billing_address.city|htmlspecialchars}, {$billing_address.province|htmlspecialchars} {$billing_address.zip|htmlspecialchars}
{$billing_address.country_name|htmlspecialchars}
{if $billing_address.phone != ""}
{$msg.billing.phone_number}: {$billing_address.phone|htmlspecialchars}
{/if}
{$msg.account.email_address}: {$billing_address.email|htmlspecialchars}
{else}
{$user_data.fname|htmlspecialchars} {$user_data.lname|htmlspecialchars}
{$msg.account.email_address}: {$user_data.email|htmlspecialchars}
{$msg.billing.paypal_ec_order}
{/if}
|
|
{if $order->shippingRequired}
Shipping Address:
|
{$shipping_address.name|htmlspecialchars}
{$shipping_address.address1|htmlspecialchars}
{if $shipping_address.address2 != ""} {$shipping_address.address2|htmlspecialchars}{/if}
{$shipping_address.city|htmlspecialchars}, {$shipping_address.province|htmlspecialchars} {$shipping_address.zip|htmlspecialchars}
{$shipping_address.country|htmlspecialchars}
|
{else}
{$msg.shipping.no_shipping_information_available} {$msg.shipping.order_is_not_shippable}
|
{/if}
|
Summary:
|
Order #:
|
{$order->order_num}
|
Date:
|
{$order->status_date_formatted|date_format:"%D"}
|
{foreach from=$shipments item="shipment"}
Shipping Method:
|
{$shipment.shipping_cm_name|htmlspecialchars}
|
{/foreach}
Total:
|
{foreach from=$orderView.lineItems key="orderViewLineItemKey" item="orderViewLineItem"}
{if $orderViewLineItem.title eq "Grand Total:"}
{$orderViewLineItem.amount}
{/if}
{/foreach}
|
|
|
PRODUCT ID |
Items Ordered
|
QTY |
{*
PRICE | *}
|
{*** PRODUCT LISTING ***}
{foreach from=$shipments item="shipment"}
{foreach from=$order_items item="order_item"}
{if $shipment.id == $order_item.shipment_id}
{$order_item.product_id|htmlspecialchars} |
{*** PRODUCT NAME ***}
{$order_item.title|htmlspecialchars}
{if $order_item.options != ""}
{$order_item.options}
{/if}
|
{*** PRODUCT NAME ***}
{*** QTY ***}
{$order_item.admin_quantity}
|
{*** QTY ***}
{*** PRICE
{$order_item.admin_price|price}
|
PRICE ***}
|
{/if}
{/foreach}
{/foreach}
{*** END PRODUCT LISTING ***}
{*** SUBTOTALS AREA
{foreach from=$orderView.lineItems key="orderViewLineItemKey" item="orderViewLineItem"}
{if $orderViewLineItem.title eq "Shipping"}{foreach from=$shipments item="shipment"}{$shipment.shipping_cm_name|htmlspecialchars}{/foreach}{else}{$orderViewLineItem.title}{/if}
{if $orderViewLineItem.subtitle != ''} {$orderViewLineItem.subtitle}{/if}
|
{$orderViewLineItem.amount}
|
{/foreach}
|
*}
{if $order->giftMessage != ""}
{$msg.cart.gift_message}:
{$order->giftMessage|htmlspecialchars|nl2br}
|
|
{/if}