#parse ("view/templates/IncludeTop.vm")
<< Main Menu
View with Web Service
#if ($message)
$message
#end

Order #$order.orderId
$fmt.formatDate($order.orderDate, 'yyyy/MM/dd hh:mm:ss')
Payment Details
Card Type: $order.cardType
Card Number:$order.creditCard* Fake number!
Expiry Date (MM/YYYY):$order.expiryDate
Billing Address
First name:$order.billToFirstName
Last name:$order.billToLastName
Address 1:$order.billAddress1
Address 2:$order.billAddress2
City: $order.billCity
State:$order.billState
Zip:$order.billZip
Country: $order.billCountry
Shipping Address
First name:$order.shipToFirstName
Last name:$order.shipToLastName
Address 1:$order.shipAddress1
Address 2:$order.shipAddress2
City: $order.shipCity
State:$order.shipState
Zip:$order.shipZip
Country: $order.shipCountry
Courier: $order.courier
Status: $order.status
#foreach ($cartItem in $itemList) #end
Item ID Description Quantity Price
$cartItem.item.itemId #if ($cartItem.item) $!cartItem.item.attr1 $!cartItem.item.attr2 $!cartItem.item.attr3 $!cartItem.item.attr4 $!cartItem.item.attr5 $!cartItem.item.product.name #else {description unavailable} #end $cartItem.quantity.intValue() $cartItem.item.listPrice
Total: $fmt.formatNumber($order.totalPrice, '$#,##0.00')

#parse ("view/templates/IncludeBottom.vm")