panlumeng 3 years ago
parent
commit
66143d4f4f
3 changed files with 29 additions and 12 deletions
  1. 25 0
      application/Admin/common.php
  2. 3 11
      application/Admin/controller/Order.php
  3. 1 1
      application/route.php

+ 25 - 0
application/Admin/common.php

@@ -195,4 +195,29 @@ function excelSave($fileName = '', $headArr = [], $data = [])
     @ unlink($file_dir);
     exit();
 }
+function deldir($path){
+    //如果是目录则继续
+    if(is_dir($path)){
+        //扫描一个文件夹内的所有文件夹和文件并返回数组
+        $p = scandir($path);
+        //如果 $p 中有两个以上的元素则说明当前 $path 不为空
+        if(count($p)>2){
+            foreach($p as $val){
+                //排除目录中的.和..
+                if($val !="." && $val !=".."){
+                    //如果是目录则递归子目录,继续操作
+                    if(is_dir($path.$val)){
+                        //子目录中操作删除文件夹和文件
+                        deldir($path.$val.'/');
+                    }else{
+                        //如果是文件直接删除
+                        unlink($path.$val);
+                    }
+                }
+            }
+        }
+    }
+    //删除目录
+    return rmdir($path);
+}
 

+ 3 - 11
application/Admin/controller/Order.php

@@ -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);
     }
 
 }

+ 1 - 1
application/route.php

@@ -40,7 +40,7 @@ Route::rule('admin/checkpwd','Admin/Account/checkPwd');
 
 Route::rule('admin/orderlist','Admin/Order/list');
 Route::rule('admin/orderdelivery','Admin/Order/OrderDelivery');
-Route::rule('admin/orderuploud','Admin/Order/uploud');
+Route::rule('admin/orderupload','Admin/Order/uploud');
 
 Route::rule('admin/stocklist','Admin/Stock/StockList');
 Route::rule('admin/stocksave','Admin/Stock/Save');