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