我正在使用 Magento 1.5.1,并尝试在侧边栏购物车中显示购物车的总数,例如结帐/购物车页面。
如果仅应用了优惠券,我想显示优惠券代码百分比金额。现在,我显示购物车价格和运费,但我需要此优惠券代码金额才能获得最终购物车价格。
我刚刚设法显示优惠券代码名称:
$couponCode = Mage::getSingleton('checkout/session')->getQuote()->getCouponCode();
但不是它的价值...
我使用以下代码找到折扣、小计、运费、税金和总计:
// Totals : discount, subtotal, shipping, tax, grand_total
$totals = Mage::getSingleton('checkout/cart')->getQuote()->getTotals();
foreach($this->getTotals() as $total)
{
if ($total->getCode() == 'discount')
{
$discount = $total->getValue();
break;
}
}
?>