发货时间如何调用到发货查询中?

2016-07-07 15:21 来源:www.chinab4c.com 作者:ecshop专家

现在的发货查询中提示的是“订单号”和“发货单号”,我想增加上“收件人”和“发货时间”,在index.php中的
function index_get_invoice_query()
{
$sql = 'SELECT o.order_sn, o.invoice_no, s.shipping_code FROM ' . $GLOBALS['ecs']->table('order_info') . ' AS o' .
' LEFT JOIN ' . $GLOBALS['ecs']->table('shipping') . ' AS s ON s.shipping_id = o.shipping_id' .
" WHERE invoice_no > '' AND shipping_status = " . SS_SHIPPED.
' ORDER BY shipping_time DESC LIMIT 10';


改成了
function index_get_invoice_query()
{
$sql = 'SELECT o.order_sn, o.invoice_no, o.consignee, o.shipping_time, s.shipping_code FROM ' . $GLOBALS['ecs']->table('order_info') . ' AS o' .
' LEFT JOIN ' . $GLOBALS['ecs']->table('shipping') . ' AS s ON s.shipping_id = o.shipping_id' .
" WHERE invoice_no > '' AND shipping_status = " . SS_SHIPPED.
' ORDER BY shipping_time DESC LIMIT 10';


收件人是调用出来了,可是发货时间出来的是一长串数字,好像是GMT格式的时间,请问怎么把时间转化回来并把格式转为“月-日”这样的显示方式呢?


回答:
有人知道吗?

顶,我也想知道

function index_get_invoice_query()
{
$sql = 'SELECT o.order_sn, o.invoice_no, o.consignee, from_unixtime(o.shipping_time,\'%Y-%m-%d %H:%i:%s\') as shippingtime,s.shipping_code FROM ' . $GLOBALS['ecs']->table('order_info') . ' AS o' .
' LEFT JOIN ' . $GLOBALS['ecs']->table('shipping') . ' AS s ON s.shipping_id = o.shipping_id' .
" WHERE invoice_no > '' AND shipping_status = " . SS_SHIPPED .
' ORDER BY shipping_time DESC LIMIT 10';
$all = $GLOBALS['db']->getAll($sql);

注意红色部分

然后在模版文件 library/invoice_query.lbi 里适当位置加入
<br>发货时间:{$invoice.shippingtime}

就可以了

正好需要这个功能,收下了

如果需要加入快递公司,需要怎样添加呢?

function index_get_invoice_query()
{
$sql = 'SELECT o.order_sn, o.invoice_no, o.consignee, from_unixtime(o.shipping_time,\'%Y-%m-%d %H:%i:%s\') as shippingtime,s.shipping_code FROM ' . $GLOBALS[ ...
zhangyh 发表于 2010-1-15 15:10


此法在NT服务器下显示时间会比实际时间提前8小时,请问如何解决呢?
ec有个local_date函数,是否应该用这个函数,但测试不通过,请指点。

这个问题早已经解决了,管理可以设为“已解决”贴了。
index.php第168行添加
  1. $all[$key]['shipping_time'] = local_date($GLOBALS['_CFG']['date_format'], $row['shipping_time']);
复制代码
然后调用{$invoice.shipping_time}就可以了。

收下了
我也改改试试

我搞定了!

我也搞定了 ,但是详细地址出不来

有没有人知道如何显示详细的地址。我网站是http://cs.kaba366.cn/

http://bbs.ecshop.com/thread-118191-1-1.html
可以参考这个文章

这个要收藏下!

谢谢LZ的分享,值得收下