2015-04-28 63 views
0

我正在使用magento 1.8.1,並且我想在管理面板中進行一些更改。在訂單詳細信息頁面上,我需要更改條形碼編號的sku代碼,此條形碼也需要發票。需要在訂單詳細信息頁面和語音中替代sku代碼

changes

我試過\程序\設計改變這種\ 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與產品名稱。

回答

0

要檢查錯誤的位置... SKU來自以下路徑 應用程序\設計\ adminhtml \ DEFAULT \ DEFAULT \模板\銷售\項目\列\ name.phtml

下面是代碼需要修改

<h5 class="title"><span id="order_item_<?php echo $_item->getId() ?>_title"><?php echo $this->htmlEscape($_item->getName()) ?></span></h5> 
<div><strong><?php echo $this->helper('sales')->__('SKU') ?>:</strong> <?php echo implode('<br />', Mage::helper('catalog')->splitSku($this->htmlEscape($this->getSku()))); ?></div> 

入住這file..hope這將解決你的問題

+0

thanx for reply,你能告訴我如何編輯此代碼來獲取條碼而不是sku嗎? – sam

+0

它仍然沒有解決,請幫助我.. – sam

0

將下面的代碼放到你的local.xml文件,然後你可以看到在管理模板路徑提示。當然,這並不直接回答你的問題,但是,它可以幫助你找到你可能需要修改的其他領域的路徑。在結束之前將文件底部的所有內容全部放在剛剛註釋掉或完成時刪除。

<websites> 
    <admin> 
     <dev> 
      <debug> 
       <template_hints>1</template_hints> 
       <template_hints_blocks>1</template_hints_blocks> 
      </debug> 
     </dev> 
    </admin> 
</websites> 
+0

thanx,它真的有幫助.... - – sam

相關問題