我无法找到一种方法来获取magento中的目录价格规则。
我试过了:
Mage::getModel('salesrule/rule')->getCollection()
但我一无所获。
答案 0 :(得分:0)
您可以使用:
$rules = Mage::getResourceModel('salesrule/rule_collection')
->setValidationFilter($websiteId, $customerGroupId, $couponCode) //if needed
->load();