ECSHOP二次开发,在用户中心的订单详情页显示商品缩略图

来源:互联网 发布:淘宝大学一飞老师 编辑:程序博客网 时间:2024/05/01 19:19

用户中心>> 我的订单>> 查看订单详细,要如何加入商品缩略图呢??

1、修改 includes/lib_order.php ,找到 order_goods 函数部分,大概在467行左右

$sql ="SELECT rec_id, goods_id,goods_name, goods_sn, market_price, goods_number," .           "goods_price, goods_attr,is_real, parent_id, is_gift, " .           "goods_price * goods_number ASsubtotal, extension_code " .           "FROM " .$GLOBALS['ecs']->table('order_goods').           " WHERE order_id ='$order_id'";

替换为

$sql ="SELECT og.rec_id, og.goods_id, og.goods_name, og.goods_sn,og.market_price, og.goods_number, " .           "og.goods_price, og.goods_attr, og.is_real, og.parent_id, og.is_gift," .           "og.goods_price * og.goods_number AS subtotal,og.extension_code,g.goods_thumb " .            "FROM" . $GLOBALS['ecs']->table('order_goods') . " AS og ".   " LEFT JOIN ". $GLOBALS['ecs']->table('goods') ." AS g on og.goods_id=g.goods_id " .            " WHEREorder_id = '$order_id'";

2、修改 user_transaction.dwt 文件,

在<thwidth="29%" align="center"bgcolor="#ffffff">{$lang.goods_attr}</th>上面增加一行代码<th  align="center"bgcolor="#ffffff">缩略图</th>紧接着在<tdalign="left"bgcolor="#ffffff">{$goods.goods_attr|nl2br}</td>上面增加一行代码<td align=centerbgcolor="#ffffff"><img src="/{$goods.goods_thumb}"></td>

转载自:http://www.9958.pw/post/ecshop_user_order_pic

0 0