Esempio n. 1
0
 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;
 }
Esempio n. 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPartProviderUsers()
 {
     return $this->hasMany(PartProviderUser::className(), ['provider_id' => 'id']);
 }
Esempio n. 3
0
 /**
  * Finds the PartProviderUser model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return PartProviderUser the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = PartProviderUser::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Esempio n. 4
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])]);
 }