@@ -1564,6 +1564,11 @@ class ApplyOrderService extends Service
->whereIn('id', $apply_id)
->select('id', 'order_number as order_no', 'product_title','technology_name','wood_name','product_no','order_product_id','crt_time')
->get()->toArray();
+ }elseif ($type == ApplyOrder::type_six){
+ $d = Box::where('del_time',0)
+ ->whereIn('id', $apply_id)
+ ->select('id', 'order_no')
+ ->get()->toArray();
}
return [$d, $d_no_map];