如何获得优惠券代码的使用次数和优惠券代码列表。SalesRule模块中是否提供该信息?

最佳答案

是的。实际上很容易做到:

$coupon = Mage::getModel('salesrule/coupon');
$coupon->load('SOMECOUPONCODE', 'code');
if($coupon->getId()) {
    $timesUsed = $coupon->getTimesUsed();
}

关于magento - 获取在Magento中使用优惠券代码的次数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6491847/

10-10 06:27