cqpCow 1 year ago
parent
commit
f188ef4805
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Service/ProductInventoryService.php

+ 1 - 1
app/Service/ProductInventoryService.php

@@ -357,7 +357,7 @@ class ProductInventoryService extends Service
     public function productInventorySetList($data, $user){
         $model = ProductInventorySet::TopClear($user,$data);
         $model = $model->where('del_time',0)
-            ->select('id','top_depart_id','param_one','param_two')
+            ->select('id','top_depart_id','param_one','param_two','param_three')
             ->orderby('id', 'desc');
         $list = $model->get()->toArray();
         $map = Depart::whereIn('id',array_column($list,'top_depart_id'))->pluck('title','id')->toArray();