<%
if(Boss.Commerce.CompletedOrder.Type == PaymentType.DirectDeposit){
%>
Your order was accepted! > >Our account details for making a direct deposit payment is as follows: > >
>Your cart will be reserved for 2 working days, if payment is not received within that time the order will be cancelled. > >
You can view the status of your order at any time by visiting: <%=Boss.SiteAddress + Boss.URLs.Account%>
<%
}else if(Boss.Commerce.CompletedOrder.Type == PaymentType.PhoneThroughCredit){
%>
Your order was accepted! > >Our phone number for ringing through orders is: > >
> >Your cart will be reserved for 2 working days, if payment is not received within that time the order will be cancelled. > >
You can view the status of your order at any time by visiting: <%=Boss.SiteAddress + Boss.URLs.Account%>
<%
}else if(Boss.Commerce.CompletedOrder.Type == PaymentType.TwoParty || Boss.Commerce.CompletedOrder.Type == PaymentType.ThreeParty){
if(Boss.Commerce.CompletedOrder.SaleState == 2){
%>
Your order was accepted and your transaction completed.
> >You can view the status of your order at any time by visiting: <%=Boss.SiteAddress + Boss.URLs.Account%>
> >Your receipt will be sent either with your purchase or to your billing address if specified separately.
<%
}else if(Boss.Commerce.CompletedOrder.SaleState == 1){
%>
Your order was accepted and will soon be actioned.
> >You can view the status of your order at any time by visiting: <%=Boss.SiteAddress + Boss.URLs.Account%>
> >Your receipt will be sent either with your purchase or to your billing address if specified separately.
<%
}else{
%>
There was an issue reported with the transaction, we have been notified and will look into it. > > The issue was:
<%
}
}else if(Boss.Commerce.CompletedOrder.Type == PaymentType.ChargeToAccount){
%>
Your order was accepted.
> >You can view the status of your order at any time by visiting: <%=Boss.SiteAddress + Boss.URLs.Account%>
> >Your invoice will be sent either with your purchase or to your billing address if specified separately.");
<%
}else if(Boss.Commerce.CompletedOrder.Type == PaymentType.FourParty){
%>
Your order was accepted > >To make payment by credit card as you selected, please click on the following link through to our credit card payment website.
> >
<%
bool hasImage = false;
foreach(PaymentMethod pt in Boss.Commerce.PaymentMethods){
if(pt.Type == PaymentType.FourParty){
%>
 >Make Payment Now
<%
hasImage = true;
break;
}
}
if(!hasImage){
write(@"Make Payment Now");
}
%>
> >
> >You can view the status of your order at any time by visiting: <%=Boss.SiteAddress + Boss.URLs.Account%>
> >Your invoice will be sent either with your purchase or to your billing address if specified separately.
<%
}
%>
|
<%
if(Boss.Commerce.CompletedOrder.Downloads){
%>
<%
int i = 1;
foreach (CartItem ci in Boss.Commerce.CompletedOrder.Cart.CartItems){
if(ci.Type == ProductType.Voucher){
%>
> |
<%=ci.Title%> <%=i%> |
<%
}
i = i + 1;
}
%>
<%
}
%>
|