2015-11-05 90 views
0

我正在使用Magento CE 1.9。我想通過編輯formatPrice函數來刪除「.00」點。我正在編輯的模板是/template/sales/order/items/renderer/default.phtml如何編輯Magento中的formatPrice函數?

我該如何追蹤formatPrice函數的位置?

$this->getOrder()->formatPrice($this->getItem()->getPrice() 

我試過編輯Store.php,但它不起作用。

+0

也許你應該只'str_replace'了」 .00" ...的'formatPrice'功能是負責所有價格格式在整個商店。 –

+0

你想從整個網站中刪除「.00」點.... ?? –

回答

0

需要編輯文件__ Zend的\區域\數據你存儲代碼的XML(即es.xml)

編輯此行

<currencyFormats> 
<currencyFormatLength> 
<currencyFormat> 
<pattern>#,##0.00 ¤ </pattern> 
</currencyFormat> 
</currencyFormatLength> 
<unitPattern count="other">{0} {1}</unitPattern> 
</currencyFormats> 
+0

我認爲這是最好的方法 – user2617403