我想在Magento發票電子郵件中的小計之後添加新行。任何人都可以指出我的哪個右核心文件用於發票電子郵件重寫?覆蓋Magento小計和在管理髮票電子郵件中添加新行
我試圖找到Magento核心文件中的發票電子郵件新行添加小計後,但我不知道正確的路徑和文件名在Magento核心文件夾中的文件。
我想在Magento發票電子郵件中的小計之後添加新行。任何人都可以指出我的哪個右核心文件用於發票電子郵件重寫?覆蓋Magento小計和在管理髮票電子郵件中添加新行
我試圖找到Magento核心文件中的發票電子郵件新行添加小計後,但我不知道正確的路徑和文件名在Magento核心文件夾中的文件。
您正在尋找總計塊。請看看這篇文章底部的鏈接,其中給出了關於如何擴展和添加自己的選項的示例。
基本上,您必須向magento表明,在某些類型的報價,發票,...要添加一個「總」的項目,你可以給位置作爲例子:
<global>
<sales>
<quote>
<totals>
<yourcompany_yourmodule>
<class>company_module/path_to_class</class>
<after>subtotal</after>
<before>tax</before>
</yourcompany_yourmodule>
</totals>
</quote>
<order_invoice>
<totals>
<yourcompany_yourmodule>
<class>company_module/path_to_class</class>
<after>subtotal</after>
<before>tax</before>
</yourcompany_yourmodule>
</totals>
</order_invoice>
<order_creditmemo>
<totals>
<yourcompany_yourmodule>
<class>company_module/path_to_class</class>
<after>subtotal</after>
<before>tax</before>
</yourcompany_yourmodule>
</totals>
</order_creditmemo>
</sales>
</global>
比你要營造合適的課程和從想要的類擴展。
更多信息和步驟:http://turnkeye.com/blog/magento-development-add-total-row-checkout/
非常感謝@ JNDPNT。 –
歡迎您:-) – JNDPNT
我有以下路徑
<blocks>
<sales>
<rewrite>
<order_invoice_totals>Companyname_Modulename_Block_Sales_Order_Invoice_Totals</order_invoice_totals>
</rewrite>
</sales>
</blocks>
使用重寫規則之下並重寫子總副後總Rewrited發票電子郵件小計,並添加斯內德行
<?php
class Companyname_Modulename_Block_Sales_Order_Invoice_Totals extends Mage_Sales_Block_Order_Invoice_Totals
{
protected function _initTotals()
{
parent::_initTotals();
//Your Code Logic Here
return $this;
}
}
我也在尋找這樣的選擇,請指教。謝謝 – Senthil