发票上的Magento优惠券说明

时间:2015-10-22 14:23:05

标签: php magento pdf

我想在PDF发票上打印优惠券说明以及总计。

所以我编辑了我的本地副本:Mage / Sales / Model / Order / PDF / Abstract.php

protected function insertTotals($page, $source, $orderdata){
    $order = $source->getOrder();
    $totals = $this->_getTotalsList($source);

    //GET THE COUPON CODE AND PRINT
    $discount = $order->getData('coupon_code');       
    $page->drawText($discount, 290, 290, 'UTF-8');

我可以获得优惠券代码,但不能获得优惠券说明。 有人知道最好的方法吗?

提前致谢!

0 个答案:

没有答案