cqp 1 month ago
parent
commit
53901e46c8
1 changed files with 5 additions and 0 deletions
  1. 5 0
      app/Service/ApplyOrderService.php

+ 5 - 0
app/Service/ApplyOrderService.php

@@ -1564,6 +1564,11 @@ class ApplyOrderService extends Service
                 ->whereIn('id', $apply_id)
                 ->whereIn('id', $apply_id)
                 ->select('id', 'order_number as order_no', 'product_title','technology_name','wood_name','product_no','order_product_id','crt_time')
                 ->select('id', 'order_number as order_no', 'product_title','technology_name','wood_name','product_no','order_product_id','crt_time')
                 ->get()->toArray();
                 ->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];
         return [$d, $d_no_map];