ecshop首页发货查询里显示收货地址收货人

2016-06-13 13:05 来源:www.chinab4c.com 作者:ecshop专家

1、修改 index.php 的 index_get_invoice_query() 函数部分 将 $sql = 'SELECT o.order_sn, o.invoice_no, s.shipping_code FROM ' . $GLOBALS['ecs']->table('order_info') . ' AS o' . 复制代码 修改为 $sql = 'SELECT o.order_sn, o.invoice_no, s.shipping_code, o.consignee, r.region_name AS province FROM ' . $GLOBALS['ecs']->table('order_info') . ' AS o' . 复制代码 紧接着在 ' LEFT JOIN ' . $GLOBALS['ecs']->table('shipping') . ' AS s ON s.shipping_id = o.shipping_id' . 复制代码 这行代码下面增加一行 ' LEFT JOIN ' . $GLOBALS['ecs']->table('region') . ' AS r ON r.region_id = o.province' . 复制代码 2、然后修改模板文件 library/invoice_query.lbi 在 {$lang.consignment} {$invoice.invoice_no} 下面增加 收货人:{$invoice.consignee} 收货地址:{$invoice.province} 3、以上方法是完全显示收货人的全称,如果想要以“王**”、“李**”的形式来显示的话,继续进行下面修改 继续修改修改index.php的 index_get_invoice_query() 函数部分 在 $all[$key]['invoice_no'] = $shipping->query((string)$row['invoice_no']); 下面增加一行 $all[$key]['consignee']=sub_str($row['consignee'], 1, false).'**';