|
@@ -146,21 +146,12 @@ class Order extends Base
|
|
|
|
|
|
public function uploud()
|
|
|
{
|
|
|
- $start = isset($this->post['start']) && $this->post['start'] !=="" ? $this->post['start']."00:00:00" :"";
|
|
|
- $end = isset($this->post['end']) && $this->post['end'] !=="" ? $this->post['end']."23:59:59" :"";
|
|
|
- $where='';
|
|
|
- if($start!==""){
|
|
|
- $where.=" and addtime >='{$start}'";
|
|
|
- }
|
|
|
- if($end!==""){
|
|
|
- $where.=" and addtime <= '{$end}'" ;
|
|
|
- }
|
|
|
$sql = "SELECT
|
|
|
a.order_sn '订单编号',
|
|
|
a.order_num '订单数量',
|
|
|
a.order_time '下单时间',
|
|
|
a.unit_weight '总重量',
|
|
|
- a.STATUS,
|
|
|
+ if(a.status=1,'待发货',if(a.status=2,'已发货','') '发货状态',
|
|
|
a.delivery_time '发货时间',
|
|
|
b.post_code '快递编号',
|
|
|
b.post_name '快递公司',
|
|
@@ -180,6 +171,7 @@ FROM
|
|
|
LEFT JOIN fc_account k ON k.id = a.accountid
|
|
|
LEFT JOIN fc_rela_account n ON n.accountid = a.accountid
|
|
|
LEFT JOIN fc_account_info v ON v.id = n.account_info
|
|
|
+ where a.status=1
|
|
|
";
|
|
|
$list = Db::query($sql);
|
|
|
if(empty($list)){
|
|
@@ -189,7 +181,7 @@ FROM
|
|
|
array_walk($list, function (&$v) {
|
|
|
$v = array_values($v);
|
|
|
});
|
|
|
- excelSave(date("Y-m-d",strtotime($start)).'至'.date("Y-m-d",strtotime($end))."未发货订单", $header, $list);
|
|
|
+ excelSave(date("Y-m-d")."未发货订单", $header, $list);
|
|
|
}
|
|
|
|
|
|
}
|