Magento 後臺訂單詳情頁Items Ordered列表處,新增跳轉到編輯產品的url
阿新 • • 發佈:2019-01-30
說明:我們在檢視訂單詳情時,有時候可能需要檢視產品在網站前臺的效果,或者再次編輯這個產品。這個時候,我們需要做一個超連結,來快速跳轉。
1.開啟
app\design\adminhtml\default\default\template\sales\order\view\items\renderer\default.phtml
2.找到此模板上第一個<td>,約30行
修改程式碼後如下:
<td> <?php if ($this->canDisplayContainer()): ?> <div id="<?php echo $this->getHtmlId() ?>" class="item-container"> <?php endif; ?> <div class="item-text"> <?php echo $this->getColumnHtml($_item, 'name') ?> <?php /*2015年4月2日*/ //獲取該產品在後臺產品編輯頁的url $product_edit_url = $this->getUrl('*/catalog_product/edit',array('id'=>$_item->getProductId())); //獲取該產品在前臺詳情頁的url $product_view_url = Mage::getBaseUrl().Mage::getModel('catalog/product')->load($_item->getProductId())->getUrlPath(); ?> <a href="<?php echo $product_view_url ?>" target="_blank">檢視此產品</a> <a href="<?php echo $product_edit_url ?>" target="_blank">編輯此產品</a> </div> <?php if ($this->canDisplayContainer()): ?> </div> <?php endif ?> </td>