开发者

How do I get the discount price for promo code or gift card?

开发者 https://www.devze.com 2023-03-06 19:57 出处:网络
I am trying to get the discount that is being calculated in the cart. I can get the coupon code with this: Mage::getSingleton(\'checkout/cart\')->getQuote()->getC开发者_如何学运维ouponCode();

I am trying to get the discount that is being calculated in the cart. I can get the coupon code with this: Mage::getSingleton('checkout/cart')->getQuote()->getC开发者_如何学运维ouponCode(); But I have yet to figure out how to get the amount that is discounted from the coupon code.


  // get coupon amount 
   $quote = Mage::getSingleton('checkout/session')->getQuote();

    foreach ($quote->getAllItems() as $item){

    echo $item->getDiscountAmount();

    } 
   // get giftcard amount
   $giftcard = $quote->getGiftCardsAmountUsed();
0

精彩评论

暂无评论...
验证码 换一张
取 消