cqpCow 1 gadu atpakaļ
vecāks
revīzija
236c8c67a1
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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 = [];