guild/backend/modules/card/models/UserCardSearch.php

128 lines
3.9 KiB
PHP
Raw Normal View History

2018-10-11 11:15:09 +03:00
<?php
namespace backend\modules\card\models;
2023-05-04 17:59:57 +03:00
use backend\modules\employee\models\Manager;
use backend\modules\employee\models\ManagerEmployee;
2023-05-04 15:14:44 +03:00
use common\models\User;
2018-10-11 11:15:09 +03:00
use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
/**
* 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;
2020-01-23 17:14:53 +03:00
public $total;
2023-05-04 17:53:14 +03:00
2018-10-11 11:15:09 +03:00
/**
* {@inheritdoc}
*/
public function rules()
{
return [
2022-12-19 16:21:19 +03:00
[['id', 'gender', 'status', 'at_project'], 'integer'],
[['fio', 'passport', 'photo', 'email', 'dob', 'created_at', 'updated_at', 'city', 'test_task_getting_date', 'test_task_complete_date'], '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
*
2023-05-04 18:02:08 +03:00
* @return ActiveDataProvider | bool
2018-10-11 11:15:09 +03:00
*/
2023-05-04 18:02:08 +03:00
public function search($params)
2018-10-11 11:15:09 +03:00
{
if (Yii::$app->user->can('show_all_profiles')) {
$query = UserCard::find();
} else {
2023-05-04 17:59:57 +03:00
$manager = Manager::findOne(Yii::$app->user->id);
if (!$manager){
2023-05-04 18:02:08 +03:00
return false;
2023-05-04 17:59:57 +03:00
}
2023-05-04 17:53:14 +03:00
$employeeIdList = ManagerEmployee::find()
2023-05-04 17:59:57 +03:00
->where(['manager_id' => $manager->id])
2023-05-04 17:53:14 +03:00
->select('employee_id')
->column();
$query = UserCard::find()->where(['in', 'user_card.id', $employeeIdList]);
}
$query->distinct()
2020-02-04 14:28:41 +03:00
->leftJoin('card_skill', 'card_skill.card_id=user_card.id')
->leftJoin('skill', 'skill.id=card_skill.skill_id');
2019-07-03 13:55:32 +03:00
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;
}
$query->andWhere(['deleted_at' => null]);
2018-11-06 11:44:27 +03:00
if (isset($params['month'])) {
$query->andFilterWhere(['=', 'MONTH(dob)', $params['month']]);
}
if (isset($params['day'])) {
$query->andFilterWhere(['=', 'DAY(dob)', $params['day']]);
}
if (isset($params['date'])) {
2023-05-04 17:53:14 +03:00
$query->andFilterWhere(['=', 'MONTH(dob)', substr($params['date'], 5, 2)]);
$query->andFilterWhere(['=', 'DAY(dob)', substr($params['date'], 8, 2)]);
}
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,
'test_task_getting_date' => $this->test_task_getting_date,
'test_task_complete_date' => $this->test_task_complete_date,
'resume_tariff' => $this->resume_tariff,
2022-12-19 16:21:19 +03:00
'at_project' => $this->at_project,
2018-10-11 11:15:09 +03:00
]);
$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
2021-08-09 18:23:56 +03:00
$query->orderBy('user_card.updated_at DESC');
2021-09-06 10:29:50 +03:00
// $query->groupBy('card_skill.card_id');
2019-07-04 12:29:42 +03:00
2020-01-23 17:14:53 +03:00
$sumQuery = clone $query;
$this->total = $sumQuery->sum('salary');
2018-10-11 11:15:09 +03:00
return $dataProvider;
}
}