开发者

Get Number of Times Coupon Code is Used in Magento

开发者 https://www.devze.com 2023-03-15 11:39 出处:网络
How can i get number of times the coupon c开发者_C百科ode is used and list of coupon codes.Is that information available in SalesRule module?Yes. Quite easily in fact:

How can i get number of times the coupon c开发者_C百科ode 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();
}
0

精彩评论

暂无评论...
验证码 换一张
取 消