瀏覽代碼

[Backend] Produits : correctif prix spécifiques

refactoring
Guillaume 3 年之前
父節點
當前提交
446c094758
共有 2 個檔案被更改,包括 8 行新增3 行删除
  1. +5
    -1
      backend/controllers/ProductController.php
  2. +3
    -2
      common/models/ProductPriceSearch.php

+ 5
- 1
backend/controllers/ProductController.php 查看文件

@@ -192,7 +192,11 @@ class ProductController extends BackendController
$model = $this->findModel($id);

$searchModel = new ProductPriceSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
$searchModel->id_product = $id ;

$dataProvider = $searchModel->search(array_merge(Yii::$app->request->queryParams, [
'id_product' => $id
]));

$userProducerWithProductPercent = UserProducer::searchAll([], [
'join_with' => ['user'],

+ 3
- 2
common/models/ProductPriceSearch.php 查看文件

@@ -85,8 +85,9 @@ class ProductPriceSearch extends ProductPrice
return $dataProvider;
}

//$query->andFilterWhere(['like', 'user.name', $this->id_user]) ;
//$query->andFilterWhere(['like', 'point_sale.name', $this->id_point_sale]) ;
if(isset($params['id_product'])) {
$query->andWhere(['product.id' => (int) $params['id_product']]) ;
}

return $dataProvider;
}

Loading…
取消
儲存