我正在使用magento 1.8.1,並且我想在管理面板中進行一些更改。在訂單詳細信息頁面上,我需要更改條形碼編號的sku代碼,此條形碼也需要發票。需要在訂單詳細信息頁面和語音中替代sku代碼
我試過\程序\設計改變這種\ adminhtml \ DEFAULT \ DEFAULT \模板\銷售\命令\創建與此代碼\項目:
來自:
<td class="first">
<h5 class="title"><span id="order_item_<?php echo $_item->getId() ?>_title"><?php echo $this->escapeHtml($_item->getName()) ?></span></h5>
<div>
<strong><?php echo $this->helper('sales')->__('SKU') ?>:</strong>
<?php echo implode('<br />', Mage::helper('catalog')->splitSku($this->escapeHtml($_item->getSku()))); ?>
</div>
到
<td class="first">
<h5 class="title"><span id="order_item_<?php echo $_item->getId() ?>_title"><?php echo $this->escapeHtml($_item->getName()) ?></span></h5>
<div>
<strong><?php echo $this->helper('sales')->__('BARCODE') ?>:</strong>
<?php echo implode('<br />', Mage::helper('catalog')->splitBarcode($this->escapeHtml($_item->getBarcode()))); ?>
</div>
,但它無法正常工作。 我還需要鏈接產品的URL與產品名稱。
thanx for reply,你能告訴我如何編輯此代碼來獲取條碼而不是sku嗎? – sam
它仍然沒有解決,請幫助我.. – sam