Browse Source

收货单

cqpCow 1 year ago
parent
commit
904bf5c92d
1 changed files with 4 additions and 4 deletions
  1. 4 4
      app/Service/EmployeeService.php

+ 4 - 4
app/Service/EmployeeService.php

@@ -432,10 +432,10 @@ class EmployeeService extends Service
         if(! empty($data['code'])) $model->where('code', 'LIKE', '%'.$data['code'].'%');
 
         $list = $model->get()->toArray();
-        if(! empty($list)) {
-            $list = $this->makeTree(0,$list);
-            $list = $this->set_sort_circle($list);
-        }
+//        if(! empty($list)) {
+//            $list = $this->makeTree(0,$list);
+//            $list = $this->set_sort_circle($list);
+//        }
 
         return [200,$list];
     }