cqpCow 1 năm trước cách đây
mục cha
commit
236c8c67a1
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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 = [];