cqp 10 달 전
부모
커밋
c9d14abda7
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      app/Service/InspectService.php

+ 2 - 2
app/Service/InspectService.php

@@ -454,8 +454,8 @@ class InspectService extends Service
 
         $device_list = DeviceOrder::where('del_time',0)
             ->where('type',DeviceOrder::Model_type_three)
-            ->where('crt_time','>=',$start_time)
-            ->where('crt_time','<=',$end_time)
+            ->where('hand_time','>=',$start_time)
+            ->where('hand_time','<=',$end_time)
             ->select('id','state')
             ->get()->toArray();