Magento日常维护常用代码分享之后台订单显示产品图片
订单中显示产品图片
打开 app\design\adminhtml\default\default\template\sales\order\view\items.phtml 进行编辑,大概45行处找到以下代码:
<th><span class="nobr">< ?php echo $this->helper('sales')->__('Item Status') ?></span></th>
在这段代码上面插入一行,写上:
<th><span><?php echo $this->helper('sales')->__('Product Image') ?></span></th>
打开app\design\adminhtml\default\default\template\sales\order\view\items\renderer\default.phtml 进行编辑,大概75行处找到以下代码:
<td class="a-center">< ?php echo $_item->getStatus() ?></td>
在这段代码上面插入一行,写上:
<td>
< ?php
$item_id = $_item->getProductId();
$item_imgurl = Mage::getBaseUrl('media').'catalog/product'.Mage::getModel('catalog/product')->load($item_id)->getImage();
?>
<a target="_blank" href="<?php echo $item_imgurl; ?>"><img height="80" width="80" alt="" src="<?php echo $item_imgurl; ?>"></a>
</td>