【问题标题】:Magento : how to get the coupon code percent-off amount in the sidebar cart?Magento:如何在侧边栏购物车中获得优惠券代码折扣金额?
【发布时间】:2023-05-18 01:02:02
【问题描述】:

我使用的是 Magento 1.5.1,我尝试在侧边栏购物车中显示购物车的总数,例如结帐/购物车页面。

如果仅应用了优惠券,我想显示优惠券代码百分比金额。 目前,我显示购物车价格和运费,但我需要此优惠券代码金额才能获得最终购物车价格。

我刚刚设法显示了优惠券代码名称:

$couponCode = Mage::getSingleton('checkout/session')->getQuote()->getCouponCode();

但不是它的价值......

【问题讨论】:

    标签: magento sidebar coupon


    【解决方案1】:

    我使用以下代码找到折扣、小计、运费、税金和总计:

    // 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;
            }
        } 
    ?>
    

    【讨论】: