如何在结账时显示个人折扣?

时间:2014-11-12 10:58:12

标签: magento show checkout discount

我已成功在我的magento商店中应用购物车规则,但在计算总数时在购物车中直接显示总折扣。

它并未显示适用于哪种产品的个别折扣价格。

如何显示个人折扣让客户知道哪些产品我有折扣?

1 个答案:

答案 0 :(得分:0)

要在结帐时获得每件商品的个人折扣金额,您可以按以下方式执行:

$quote = Mage::getSingleton('checkout/session')->getQuote();
foreach ($quote->getAllItems() as $item){
    $discount = $item->getDiscountAmount();
// $discount is the discount amount for the individual item
}