How can i get number of times the coupon code is used and list of coupon codes.Is that information available in SalesRule
module?
Yes. Quite easily in fact:
$coupon = Mage::getModel('salesrule/coupon');
$coupon->load('SOMECOUPONCODE', 'code');
if($coupon->getId()) {
$timesUsed = $coupon->getTimesUsed();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With