博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ecshop后台订单信息页、订单商品编辑页,订单打印页 显示商品缩略图
阅读量:4885 次
发布时间:2019-06-11

本文共 1301 字,大约阅读时间需要 4 分钟。

一、打开 admin/order.php 文件 查找代码(建议使用editplus)

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

修改成:

1 $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

 

二、打开 admin/templates/order_info.htm   订单信息模板

查找代码 <td>{$goods.goods_sn}</td> 在后面添加代码 <td><img src="/{$goods.goods_thumb}" width="125" height="140"></td>

继续查找代码 <td scope="col"><div align="center"><strong>{$lang.goods_sn}</strong></div></td> 在后面添加代码 <td scope="col"><div align="center"><strong>商品图片</strong></div></td>

 

三、打开 data/order_print.html   打印模板页

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

查找代码 <td>&nbsp;{$goods.goods_sn} <!-- 商品货号 --></td> 在后面添加代码 <td><img src="/{$goods.goods_thumb}" width="121" height="136"> <!-- 商品略缩图 --></td>

再继续查找代码 <td bgcolor="#cccccc">{$lang.goods_sn}    <!-- 商品货号 --></td> 继续在后面添加代码 <td bgcolor="#cccccc">商品图片            <!-- 商品货号 --></td>

 

四、打开订单商品信息编辑页【添加订单】模板 admin/templates/order_step.htm

查找代码 <td>{$goods.goods_sn}

在这条代码前面加如下代码

<td><img src="/{$goods.goods_thumb}" width="125" height="140"></td>

 

 

订单信息页效果图:

订单信息页效果图

 

 

打印订单页效果图:

打印订单页效果图

 

 

 

 

 

 

 

 

 

 

 

 

 

 

订单商品信息编辑页【添加订单】

 

转载于:https://www.cnblogs.com/wangblognet/archive/2012/10/08/2715008.html

你可能感兴趣的文章
memcached(十三)注意事项
查看>>
ITerms2在mac系统下的安装和配色,并和go2shell关联
查看>>
nginx常见面试题1
查看>>
Sublime Text 报“Pylinter could not automatically determined the path to lint.py
查看>>
自动化测试用例getText()获取某一个元素的值返回null或空
查看>>
大数智能未来
查看>>
virtualenv和virtualenvwrapper 的安装和使用
查看>>
MAC sublime text 无法自动补齐标签
查看>>
经典代码(01)
查看>>
生成ico格式图标
查看>>
并查集hdu4424
查看>>
jdbc之分页查询
查看>>
sbrk and coreleft
查看>>
树型DP
查看>>
怎么在ubuntu上使用pidgin登陆QQ
查看>>
思维的惰性
查看>>
【Android】学习记录<1> -- 初识ffmpeg
查看>>
关于IAsyncResult接口的CompletedSynchronously属性
查看>>
编译原理——算符优先分析文法(附源代码)
查看>>
jboss的启动过程
查看>>