Is it possible to have a gift certificate automatically activated if/when the payment method is approved, or the order is marked as paid?
Thanks,
Gift Certificate Activation
-
- Ensign (ENS)
- Posts: 7
- Joined: Wed Dec 10, 2008 11:08 am
Gift Certificate Activation
Jackie Apshire Jr.
Page8 Studios.com
Specializing in eCommerce Integrations
Page8 Studios.com
Specializing in eCommerce Integrations
Re: Gift Certificate Activation
This has been fixed in our development (and will be available in 7.2) ... but a workaround for now could be to write some custom code in 'CheckedOut' event handler on 'One Page Checkout' page.
Re: Gift Certificate Activation
Edit your ConLib/OnePageCheckout.ascx.cs file and change the Checkedout method to look like as below
Code: Select all
void CheckedOut(object sender, CheckedOutEventArgs e)
{
..............................................................................
..............................................................................
..............................................................................
//Activate GiftCertificate
Order order = OrderDataSource.Load(e.OrderId, false);
if (order != null)
{
if (order.OrderStatus.Name == "Completed")
{
foreach (OrderItem orderItem in order.Items)
{
if (orderItem.OrderItemType == OrderItemType.Product)
{
if (orderItem.Product.IsGiftCertificate)
{
GiftCertificateCollection giftCertificates = GiftCertificateDataSource.LoadForOrderItem(orderItem.OrderItemId);
if (giftCertificates.Count > 0)
{
IGiftCertKeyProvider provider = new DefaultGiftCertKeyProvider();
foreach (GiftCertificate giftCertificate in giftCertificates)
{
giftCertificate.SerialNumber = provider.GenerateGiftCertificateKey();
giftCertificate.AddActivatedTransaction();
giftCertificate.Save();
}
}
}
}
}
}
}
}
Re: Gift Certificate Activation
Ah, nice! Thanks Mazhar... This answers a question I had about where to adjust an Inventory History table I was working on. Didn't know that the order # was available before the reciept page.
Thanks!
Scott
Thanks!
Scott
Re: Gift Certificate Activation
No way - the stored order is available in onepagecheckout??
News to me too - all sorts of new doors open up
News to me too - all sorts of new doors open up

Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
-
- Ensign (ENS)
- Posts: 7
- Joined: Wed Dec 10, 2008 11:08 am
Re: Gift Certificate Activation
Sorry for the late response; I've been out of town for the holidays. I just wanted to say thank you for your help with the matter, and I'll give it a try as soon as I get a chance.
Thanks again,
Thanks again,
Jackie Apshire Jr.
Page8 Studios.com
Specializing in eCommerce Integrations
Page8 Studios.com
Specializing in eCommerce Integrations