您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop订单列表显示支付方式收货人姓名的方法
冰夏2023-12-12 18:06:46ecshop商城教程已有人查阅
导读在ecshop订单列表中显示收货人姓名、支付方式的方法!3:在ECSHOP模板文件user_transaction.dwt的order_list中
在ecshop订单列表中显示收货人姓名、支付方式的方法!
1:includes\lib_transaction.php中。
function get_user_orders()函数SQL语句中增加
1:includes\lib_transaction.php中。
function get_user_orders()函数SQL语句中增加
$sql = "SELECT order_id, order_sn, order_status, shipping_status,consignee,pay_name, pay_status, add_time, " .
"(goods_amount + shipping_fee + insure_fee + pay_fee + pack_fee + card_fee + tax - discount) AS total_fee ".
" FROM " .$GLOBALS['ecs']->table('order_info') .
" WHERE user_id = '$user_id' ORDER BY add_time DESC";
2:数组中
'consignee' => $row['consignee'],
'pay_name' => $row['pay_name'],
3:在ECSHOP模板文件user_transaction.dwt的order_list中
<tr>
<td align="center" bgcolor="#ffffff"><a href="/user.php?act=order_detail&order_id={$item.order_id}">{$item.order_sn}</a></td>
<td align="center" bgcolor="#ffffff">{$item.order_time}</td>
<td bgcolor="#ffffff">{$item.consignee}</td>
<td bgcolor="#ffffff">{$item.pay_name}</td>
<td align="right" bgcolor="#ffffff">{$item.total_fee}</td>
<td align="center" bgcolor="#ffffff">{$item.order_status}</td>
<td align="center" bgcolor="#ffffff"><font>{$item.handler}</font></td>
</tr>
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop出现Deprecated: preg_replace()报错的解决方法
随着PHP5.5 的普及,ECSHOP系统又爆出了新的错误。PHP发展到PHP5.5版本以后,有了很多细微的变化。而ECSHOP官方更新又太慢,发现这些问题后也不及时升级 -
解决ecshop登录自动退出ession失效无法下单动态ip问题
修改lib_base.php文件real_ip()函数: -
ecshop订单操作状态对应值说明
ecshop电子商务系统中,ECSHOP的订单有很多的状态。这些状态,是维持和保证ECSHOP后台操作订单状态转换的依据。 -
ecshop后台订单实现精准统计
显示IP,来源网站等信息,通过这些信息能帮助你更好的掌握潜在客户的来源与分布,为精准营销提供条件
留言与评论 (共有 条评论) |