فهرست منبع

32复核问题:供应商,全部只显示部分状态的数据

Cherry 2 سال پیش
والد
کامیت
91c847c4bc
1فایلهای تغییر یافته به همراه18 افزوده شده و 15 حذف شده
  1. 18 15
      application/admin/controller/MobileOrder.php

+ 18 - 15
application/admin/controller/MobileOrder.php

@@ -123,7 +123,7 @@ class MobileOrder extends Backend
                 ->where(function ($q) {
                     //供应商
                     if ($this->proxy) {
-                        return $q->where('mobile_order.admin_id', $this->auth->id);
+                        return $q->where('mobile_order.admin_id', $this->auth->id)->whereIn('status',[15,17,20,25,60]);
                     }
                 })
                 ->order($sort, $order)
@@ -186,25 +186,28 @@ class MobileOrder extends Backend
                 ->where(function ($q) {
                     //供应商
                     if ($this->proxy) {
-                        return $q->where('mobile_order.admin_id', $this->auth->id);
+                        return $q->where('mobile_order.admin_id', $this->auth->id)->whereIn('status',[15,17,20,25,60]);
                     }
                 })
                 ->group('mobile_order.status')
                 ->select();
 
-            // 状态10的数据统计
-            $status_10_count = $this->model
-                ->with($relation)
-                ->where($where)
-                ->whereNotIn('status', [0, 50, 90])
-                ->where($map)
-                ->where('mobile_order.type', 1)
-                ->where(function ($q) {
-                    //供应商
-                    if ($this->proxy) {
-                        return $q->where('mobile_order.admin_id', $this->auth->id);
-                    }
-                })->count();
+            $status_10_count=0;
+            if (!$this->proxy) {
+                // 状态10的数据统计
+                $status_10_count = $this->model
+                    ->with($relation)
+                    ->where($where)
+                    ->whereNotIn('status', [0, 50, 90])
+                    ->where($map)
+                    ->where('mobile_order.type', 1)
+                    ->where(function ($q) {
+                        //供应商
+                        if ($this->proxy) {
+                            return $q->where('mobile_order.admin_id', $this->auth->id);
+                        }
+                    })->count();
+            }
 
             $result = array("total" => $list->total(), "rows" => $list->items(), 'extend' => $extend, 'status_list' => $status_list,'status_10_count'=>$status_10_count);
             $result['link'] = $this->request->url() . '&export=1';