1.打开app\design\adminhtml\default\default\template\sales\order\view\items\renderer\default.phtml ,
找到第一个<td></td> 大约30行的位置
2.修改代码如下:
<td>
<?php if ($this->canDisplayContainer()): ?>
<div id="<?php echo $this->getHtmlId() ?>" class="item-container">
<?php endif; ?>
<div class="item-text">
<?php
$product_url = Mage::getBaseUrl().Mage::getModel('catalog/product')->load($_item->getProductId())->getUrlPath();
?>
<a href="<?php echo $product_url ?>" target="_blank"> <?php echo $this->getColumnHtml($_item, 'name') ?></a>
</div>
<?php if ($this->canDisplayContainer()): ?>
</div>
<?php endif ?>
</td>