cqp 1 day ago
parent
commit
263ef47829
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Service/ScrappService.php

+ 1 - 1
app/Service/ScrappService.php

@@ -477,7 +477,7 @@ class ScrappService extends Service
 
     public function processFlowList($data, $user){
         $model = OrdersProduct::where('del_time',0)
-            ->select('id as order_number','production_no','out_order_no','production_time','customer_name','product_title','technology_name','product_size','product_unit','dispatch_complete_quantity as quantity')
+            ->select('id as order_number','production_no','out_order_no','production_time','customer_name','product_title','technology_name','product_size','product_unit','dispatch_complete_quantity as quantity','id')
             ->orderBy('id','desc');
 
         if(! empty($data['out_order_no'])) $model->where('out_order_no', 'LIKE', '%'.$data['out_order_no'].'%');