public function getUserProvider($params)
 {
     //        $dataProvider = $this->find()
     //            ->andWhere(['store_id'=>$params['store_id']])
     //            ->andWhere(['provider_id'=>$params['provider_id']])->all();
     $query = PartProviderUser::find()->andWhere($params);
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     return $dataProvider;
 }
Exemple #2
0
 public function init()
 {
     $this->city_id = Store::findOne(['id' => $this->store_id])->city_id;
     $this->provider_srok = new ActiveDataProvider(['query' => PartProviderSrok::find()->andWhere(['city_id' => $this->city_id])]);
     $this->provider_user = new ActiveDataProvider(['query' => PartProviderUser::find()->andWhere(['store_id' => $this->store_id])]);
 }