I have two promotions in the different groups with "Exclusive within all groups" property set for each of promotion. One promotion is order promotion and other is shipping promotion. They should not be combined, however if user applies first order promotion and then shipping promotion, both are applied to the order. If it's vice versa, first shipping promotion and then order, it takes only the last one. We don't have any custom code except Episerver:
public void ApplyPromotionCode(string couponCode) { MarketingContext.Current.AddCouponToMarketingContext(couponCode); }
This is very crucial for our client during the shopping season.
Hi,
I have two promotions in the different groups with "Exclusive within all groups" property set for each of promotion. One promotion is order promotion and other is shipping promotion. They should not be combined, however if user applies first order promotion and then shipping promotion, both are applied to the order. If it's vice versa, first shipping promotion and then order, it takes only the last one. We don't have any custom code except Episerver:
public void ApplyPromotionCode(string couponCode)
{
MarketingContext.Current.AddCouponToMarketingContext(couponCode);
}
This is very crucial for our client during the shopping season.
Thank you.