ソースを参照

[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;
}

読み込み中…
キャンセル
保存