cqpCow 1 년 전
부모
커밋
236c8c67a1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Service/Box/BoxService.php

+ 1 - 1
app/Service/Box/BoxService.php

@@ -727,7 +727,7 @@ class BoxService extends Service
     public function boxFhBzList($data){
         if(empty($data['shipment_order_no'])) return [false, '请输入发货单号'];
         $model = DB::table('box_detail')->where('del_time',0)
-            ->whereIn('shipment_order_no','LIKE', '%'.$data['shipment_order_no'].'%')
+            ->where('shipment_order_no','LIKE', '%'.$data['shipment_order_no'].'%')
             ->select('order_no','crt_time');
 
         $return = [];