<#include "/common/top.html" >
Order #${order.orderId} ${ order.orderDate?string('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}
<#list order.lineItems as lineItem>
Item ID Description Quantity Price Total Cost
${lineItem.item.itemId} <#if lineItem.item?exists> ${lineItem.item.attribute1} ${lineItem.item.attribute2?default('')} ${lineItem.item.attribute3?default('')} ${lineItem.item.attribute4?default('')} ${lineItem.item.attribute5?default('')} ${lineItem.item.product.name} <#if !lineItem.item?exists> {description unavailable} ${lineItem.quantity} ${lineItem.unitPrice?string('$#,##0.00') } ${lineItem.total?string('#,##0.00') }
Total: ${ order.totalPrice?string('$#,##0.00') }
<#include "/common/bottom.html">