 |
 |
 |
 |
 |
 |
Billing Info |
 |
Payment Method |
 |
 |
 |
 |
 |
 |
 |
 |
 |
<%=sBillingInfo%> |
 |
<%=sPayemntInfo%>
|
 |
 |
<%
For iShiptoStart=1 to iHowManyShipTos
shiptovarItem = ShipToItems(iShiptoStart)
sBillShipSlNo = shiptovarItem(1)
sShipName = shiptovarItem(2) 'first name
if sShipName <> "" then
sShipName = " Shipping Info for  " & sShipName & " " & shiptovarItem(3) & "" 'last name
else
sShipName = " Shipping Info"
end if
if iHowManyShipTos > 1 then
sShipName = trim(iShiptoStart) & ": " & sShipName
end if
Redim customer_shipinfo(billshiparraysize)
getOrderAddressInfo customer_shipinfo, iShipIndex, sBillShipSlNo, true
sShipToCountry = customer_shipinfo(iShipIndex+11)
sShippingInfo = getBillShipDisplayInfo(customer_shipinfo, iShipIndex)
sShippingMethod = getShippingMethodDesc(customer_shipinfo(26))
if iShiptoStart > 1 then
%>
|
<%
end if
%>
 |
 |
 |
 |
 |
 |
<%=sShipName%> |
 |
Shipping Method |
 |
 |
 |
 |
<%=sShippingInfo%> |
 |
<%=sShippingMethod%> |
 |
|
 |
 |
 |
ITEM # |
 |
ITEM |
 |
 |
 |
QTY |
 |
UNIT PRICE |
 |
TOTAL PRICE |
 |
 |
 |
 |
<%
For GENERIC_VARIABLE=1 to UBound(basketItems)
basketvarItem = basketItems(GENERIC_VARIABLE)
if trim(basketvarItem(16)) = sBillShipSlNo then
%>
 |
<%=basketvarItem(7)%> |
 |
<%=basketvarItem(9)%> |
 |
<%=basketvarItem(4)%> |
 |
<%=FormatCurrency(basketvarItem(6),2)%> |
 |
<%=FormatCurrency(basketvarItem(11),2)%> |
 |
 |
 |
 |
<%
end if
Next
NEXT
%>
 |
 |
Subtotal: |
 |
<%=FormatCurrency(shipTotals(1)(2),2)%> |
 |
 |
<%
'Macs Down
if trim(MacsUserID)="" and ECOMETRY_ENABLED = true then%>
 |
We are temporarily unable to calculate shipping charges for this international order, however, once the order has been received, an e-mail will be sent to you containing the exact shipping amount that has been applied. Click Here to see the estimated shipping charges for your country.Click here to see the estimated shipping charges information. |
 |
 |
<%else
%>
 |
Shipping: |
 |
<%=FormatCurrency(shipTotals(1)(3),2)%> |
 |
 |
 |
Tax: |
 |
<%=FormatCurrency(shipTotals(1)(4),2)%> |
 |
 |
<%if cdbl(shipTotals(1)(5))>0 then%>
 |
Additional: |
 |
<%=FormatCurrency(shipTotals(1)(5),2)%> |
 |
 |
<%end if%>
<%if cdbl(shipTotals(1)(7))>0 then%>
 |
Discounts: |
 |
<%=FormatCurrency(shipTotals(1)(7),2)%> |
 |
 |
<%end if%>
<%end if 'macs down%>
 |
Total: |
 |
<%=FormatCurrency(shipTotals(1)(6),2)%> |
 |
 |