Magento获取优惠券说明 [英] Magento get coupon description

查看:95
本文介绍了Magento获取优惠券说明的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试检索"Magento优惠券描述"字段中设置的文本,以用作验证规则的一部分.有人知道如何使用优惠券代码加载优惠券价格规则并检索关联的优惠券描述文本吗?

I am trying to retrive the text set in the Magento Coupon Description field to use as part of a validation rule. Does anyone know how to load a coupon price rule using the coupon code and retrieve the associated coupon description text?

推荐答案

在Magento 1.3下,您可以使用此代码(未经测试,因为我没有1.3可以轻松够到):

Under Magento 1.3, you can use this code (not tested as I have no 1.3 within easy reach) :

$rule = Mage::getModel('salesrule/rule')->load($code, 'coupon_code');

if ($rule->getId()) {
    $description = $rule->getDescription();
}

这篇关于Magento获取优惠券说明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆