关于在ecshop后台订单信息页或打印页显示商品缩略图

2016-09-11 20:39 来源:www.chinab4c.com 作者:ecshop专家


1、
打开 admin/order.php 文件 (建议使用editplus)

找到
 
$sql = "SELECT o.*, IF(o.product_id > 0, p.product_number, g.goods_number) AS storage, o.goods_attr, g.suppliNULLame, '') AS


修改为
 
$sql = "SELECT o.*, IF(o.product_id > 0, p.product_number, g.goods_number) AS storage, g.goods_thumb, o.goods_attr, g.suppliers_id, IFNULL(b.brand_name, '') AS


2、
打开 admin/templates/order_info.htm 模板页


{$goods.goods_sn} 后面增加 <img src="/{$goods.goods_thumb}">

3、
打开 data/order_print.html 模板页
同样在 {$goods.goods_sn} 后面增加 <img src="/{$goods.goods_thumb}">