|
Billing Address: |
|
#if($!orderForm.billingAddressType == "Work")
Company Name |
$webapi.getUserCompanyName() |
#end
User Name: |
$webapi.getUserFullName() |
Address Street 1: |
$!orderForm.billingAddress1
|
Address Street 2: |
$!orderForm.billingAddress2
|
City: |
$!orderForm.billingCity
|
State: |
#if ($orderForm.billingState == "otherCountry")
$!orderForm.billingStateOtherCountryText
#else
$!orderForm.billingState
#end
|
Country: |
$!orderForm.billingCountry
|
Zip: |
$!orderForm.billingZip
|
#if($!orderForm.billingAddressType.equals('Work'))
Billing Contact's Person Name: |
$!orderForm.billingContactName
|
Phone: |
$!orderForm.billingContactPhone
|
Email: |
$!orderForm.billingContactEmail
|
#end
|
Shipping Address: |
#if($!orderForm.shippingAddressType == "Work")
Company Name |
$webapi.getUserCompanyName() |
#end
User Name: |
$!orderForm.billingFirstName $!orderForm.billingLastName |
|
Shipping Label: |
$!orderForm.shippingLabel
|
Address Street 1: |
$!orderForm.shippingAddress1
|
Address Street 2: |
$!orderForm.shippingAddress2
|
City: |
$!orderForm.shippingCity
|
State: |
#if ($orderForm.shippingState == "otherCountry")
$!orderForm.shippingStateOtherCountryText
#else
$!orderForm.shippingState
#end
|
Country: |
$!orderForm.shippingCountry
|
Zip: |
$!orderForm.shippingZip
|
Phone: |
$!orderForm.shippingPhone
|
Fax: |
$!orderForm.shippingFax
|
|
|
Payment Information: |
#set($paymentType = $!orderForm.paymentType)
Payment Type: |
#if($paymentType == 'cc')
#set($selected = $config.getStringProperty("ECOM_CREDIT_CARD_FN"))
#elseif($paymentType == 'ch')
#set($selected = $config.getStringProperty("ECOM_CHECK_FN"))
#elseif($paymentType == 'po')
#set($selected = $config.getStringProperty("ECOM_PURCHASE_ORDER_FN"))
#end
$!selected
|
Name on Card: |
$!orderForm.nameOnCard
|
Card Type |
#set($cardType = $!orderForm.cardType)
#if($cardType == 'vs')
#set($selected = "Visa")
#elseif($cardType == 'mc')
#set($selected = "Masterd Card")
#elseif($cardType == 'ae')
#set($selected = "American Express")
#elseif($cardType == 'dc')
#set($selected = "Discover")
#end
$!selected
|
Card Number: |
$!webapi.toCCFormat($!orderForm.cardNumber)
|
Expiration Date: |
#set($now = $date.getDate())
#set($month = $!orderForm.cardExpMonth)
#set($year = $!orderForm.cardExpYear)
$webapi.toMonthFormat($month) $!year
|
Card Verification Value: |
$!orderForm.cardVerificationValue
|
|
|
PO Number |
$!orderForm.poNumber
|
|
|
|
|
#set($shoppingCart = $session.getAttribute("shoppingCart"))
#if ($shoppingCart)
#set($holders = $shoppingCart.holders)
#end
#if ($shoppingCart)
#set($discountCodes = $shoppingCart.discountCodes)
#end
#foreach($holder in ${holders})
#set($format = $holder.format)
#set($product = $format.product)
#set($priceAmount = $holder.price)
#set($lineTotal = $holder.lineTotal)
#end
#set($totalDiscount = $orderForm.orderDiscount)
#set($totalFinal = $math.sub($orderForm.orderSubTotal,$totalDiscount))
Charges: |
Subtotal: |
$ $!webapi.toPriceFormat($!totalFinal)
|
#set($shipping = $orderForm.orderShipping)
Shipping and Handling: |
$ $!webapi.toPriceFormat($!shipping)
|
#set($tax = 0)
#if($!orderForm.billingState == 'FL')
#set($tax = $orderForm.orderTax)
Tax (6.5%) FL: |
$ $!webapi.toPriceFormat($!tax)
|
#end
#set($totalInvoice = $orderForm.orderTotal)
Total: |
$ $!webapi.toPriceFormat($!totalInvoice)
|
|
#set($isShippingZero = $orderForm.isShippingZero)
#if($isShippingZero)
We will apply shipping later, we are only applying handling charges now. |
#end
Select different shipping: |
|
|
|
|
|
|