cqpCow 1 жил өмнө
parent
commit
236c8c67a1

+ 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 = [];