2018-10-11 11:15:09 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace backend\modules\card\models;
|
|
|
|
|
2019-07-03 13:55:32 +03:00
|
|
|
use common\classes\Debug;
|
2018-10-11 11:15:09 +03:00
|
|
|
use Yii;
|
|
|
|
use yii\base\Model;
|
|
|
|
use yii\data\ActiveDataProvider;
|
|
|
|
use backend\modules\card\models\UserCard;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UserCardSearch represents the model behind the search form of `backend\modules\card\models\UserCard`.
|
|
|
|
*/
|
|
|
|
class UserCardSearch extends UserCard
|
|
|
|
{
|
2019-07-03 16:06:11 +03:00
|
|
|
public $skills;
|
2018-10-11 11:15:09 +03:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[['id', 'gender', 'status'], 'integer'],
|
2019-12-09 10:54:39 +03:00
|
|
|
[['fio', 'passport', 'photo', 'email', 'dob', 'created_at', 'updated_at', 'city'], 'safe'],
|
2019-07-03 16:06:11 +03:00
|
|
|
['skills', 'each', 'rule' => ['integer']],
|
2018-10-11 11:15:09 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function scenarios()
|
|
|
|
{
|
|
|
|
// bypass scenarios() implementation in the parent class
|
|
|
|
return Model::scenarios();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates data provider instance with search query applied
|
|
|
|
*
|
|
|
|
* @param array $params
|
|
|
|
*
|
|
|
|
* @return ActiveDataProvider
|
|
|
|
*/
|
|
|
|
public function search($params)
|
|
|
|
{
|
|
|
|
$query = UserCard::find();
|
|
|
|
// add conditions that should always apply here
|
2019-07-04 11:36:06 +03:00
|
|
|
$query->where(['id'])->distinct();
|
2019-07-03 13:55:32 +03:00
|
|
|
//try join 3 tables
|
|
|
|
$query->leftJoin('card_skill', 'card_skill.card_id=user_card.id');
|
|
|
|
$query->leftJoin('skill', 'skill.id=card_skill.skill_id');
|
|
|
|
|
2018-10-11 11:15:09 +03:00
|
|
|
$dataProvider = new ActiveDataProvider([
|
|
|
|
'query' => $query,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->load($params);
|
|
|
|
|
|
|
|
if (!$this->validate()) {
|
|
|
|
// uncomment the following line if you do not want to return any records when validation fails
|
|
|
|
// $query->where('0=1');
|
|
|
|
return $dataProvider;
|
|
|
|
}
|
|
|
|
|
2018-11-06 11:44:27 +03:00
|
|
|
$query->where(['deleted_at' => null]);
|
|
|
|
|
2018-10-11 11:15:09 +03:00
|
|
|
// grid filtering conditions
|
|
|
|
$query->andFilterWhere([
|
|
|
|
'id' => $this->id,
|
|
|
|
'gender' => $this->gender,
|
|
|
|
'dob' => $this->dob,
|
|
|
|
'status' => $this->status,
|
2019-12-09 10:54:39 +03:00
|
|
|
'city' => $this->city,
|
2018-10-11 11:15:09 +03:00
|
|
|
'created_at' => $this->created_at,
|
|
|
|
'updated_at' => $this->updated_at,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$query->andFilterWhere(['like', 'fio', $this->fio])
|
|
|
|
->andFilterWhere(['like', 'passport', $this->passport])
|
|
|
|
->andFilterWhere(['like', 'photo', $this->photo])
|
2019-12-09 10:54:39 +03:00
|
|
|
->andFilterWhere(['like', 'city', $this->city])
|
2018-10-11 11:15:09 +03:00
|
|
|
->andFilterWhere(['like', 'email', $this->email]);
|
2019-07-03 16:17:20 +03:00
|
|
|
|
2019-07-03 16:06:11 +03:00
|
|
|
$query->andFilterWhere(['skill.id' => $this->skills]);
|
2019-07-03 13:55:32 +03:00
|
|
|
|
2019-07-04 12:29:42 +03:00
|
|
|
$query->orderBy('user_card.created_at DESC');
|
|
|
|
|
2018-10-11 11:15:09 +03:00
|
|
|
return $dataProvider;
|
|
|
|
}
|
|
|
|
}
|