Magento重写发票PDF模型

时间:2012-09-03 09:13:55

标签: php magento pdf-generation

我正在重写pdf发票模型,在pdf的页脚中添加一些文字。当我从后端打印发票时,会显示奇怪的字符。enter image description here

应用程序/代码/本地/公司/发票的/ etc / config.xml中

<?xml version="1.0"?>
<config>
    <modules>
        <Company_Invoice>
            <version>0.1.0</version>
        </Company_Invoice>
    </modules>
    <global>
        <models>
            <sales>
                <rewrite>
                    <order_pdf_invoice>Company_Invoice_Model_Order_Pdf_Invoice</order_pdf_invoice>
                </rewrite>
            </sales>
        </models>
    </global>
</config>

应用程序/代码/本地/公司/发票/型号/订购/ PDF / Invoice.php http://pastebin.com/VQaWr0Xg

如果禁用此模块,默认Magento会正确打印发票。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

看起来你在某处包含了一个var_dump()语句。尝试在代码库中搜索var_dump()的出现并将其删除。