广州传奇网络

地址:广州市天河区东圃大马路富华楼C座

电话:13808825895

邮箱:gz020wbs@163.com

QQ:1564443073

网址:http://www.020wbs.com/

首页 > 二次开发Ecshop二次开发 > 在ecshop用户中心我的订单列表中显示商品缩略图

二次开发Ecshop二次开发

二次开发Ecshop二次开发

在ecshop用户中心我的订单列表中显示商品缩略图

 在ecshop用户中心我的订单列表中显示商品缩略图

1)、

首先我们来打开 /includes/lib_transaction.php 文件

找到 get_user_orders 函数部分,

将下面代码

$arr[] = array('order_id'       => $row['order_id'],
'order_sn'       => $row['order_sn'],
'order_time'     => local_date($GLOBALS['_CFG']['time_format'], $row['add_time']),
'order_status'   => $row['order_status'],
'total_fee'      => price_format($row['total_fee'], false),
'handler'        => $row['handler'],

修改为:

$row['thumb'] =$GLOBALS['db'] ->getOne("select goods_thumb from".
$GLOBALS['ecs']->table("goods").
"where goods_id =(select goods_id from".
$GLOBALS['ecs']->table("order_goods").
"where order_id=".$row['order_id'].")");

$arr[] = array('order_id'       => $row['order_id'],
'order_sn'       => $row['order_sn'],
'order_time'     => local_date($GLOBALS['_CFG']['time_format'], $row['add_time']),
'order_status'   => $row['order_status'],
'total_fee'      => price_format($row['total_fee'], false),
'handler'        => $row['handler'],
        'thumb'          => $row['thumb']);
注意:红色部分为新增或者修改的代码