Magento - get price rules from order

后端 未结 4 1193
感动是毒
感动是毒 2020-12-15 01:41

does anyone know how one can get the catalog- and cart price rules from an order?

I know that I can get the discount percentage from an order item via the method

4条回答
  •  执笔经年
    2020-12-15 02:25

    What might help you though:

    $order = Mage::getModel('sales/order')->load(20569);
    echo Mage::helper('sales')->__('Discount (%s)', $order->getDiscountDescription());
    

    This prints out all the discount rules name which have been applied to the order.

提交回复
热议问题