an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Support > Using DotShoppingCart > Coupon Number on Order Confirmation
Last Post 7/7/2009 2:18:24 PM By lukezy. 3 replies.
7/7/2009 10:45:38 AM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Coupon Number on Order Confirmation
Hi,
 
The Coupon # needs be printable on Order Confirmation email, for tracking by both customer and internal staff .
How can we have that.
 
Bahram
7/7/2009 11:30:59 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Coupon Number on Order Confirmation
In Core\DBO\Order.cs change
    writer.WriteEncodedText(total.Name + ": ");
to
    writer.WriteEncodedText(total.Name + ": " + total.Note);
 
DotShoppingCart Staff
7/7/2009 1:56:08 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: Coupon Number on Order Confirmation
 It seems it is in Core Component, Does it have a Suit solution.
My live site is based on DSCsuite, Do I need to make a new Dll of DotShoppingCart.Commerciial.Core ?
 
 
7/7/2009 2:18:24 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Coupon Number on Order Confirmation
Yes, you only need to copy it to OrderPipeline since order confirmation emails are sent via OrderPipeline.
DotShoppingCart Staff