|
@@ -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';
|