guild/backend/modules/reports/models/ReportsSearch.php

99 lines
2.5 KiB
PHP
Raw Normal View History

2020-02-05 12:08:01 +03:00
<?php
namespace backend\modules\reports\models;
2021-09-06 10:29:50 +03:00
use common\classes\Debug;
2020-02-05 12:08:01 +03:00
use yii\base\Model;
use yii\data\ActiveDataProvider;
use common\models\Reports;
2021-09-06 10:29:50 +03:00
2020-02-05 12:08:01 +03:00
/**
* ReportsSearch represents the model behind the search form of `common\models\Reports`.
*/
class ReportsSearch extends Reports
{
public $fio;
2021-09-06 10:29:50 +03:00
public $month;
public $year;
2020-02-05 12:08:01 +03:00
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['id', 'created_at', 'user_card_id'], 'integer'],
[['today', 'difficulties', 'tomorrow', 'fio'], 'safe'],
];
}
/**
* {@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 = Reports::find()
->leftJoin('user_card', 'reports.user_card_id = user_card.id');
// add conditions that should always apply here
$dataProvider = new ActiveDataProvider([
'query' => $query,
2020-02-05 16:28:37 +03:00
'sort' => [
'defaultOrder' => [
'created_at' => SORT_DESC,
]
],
2020-02-05 12:08:01 +03:00
]);
$this->load($params);
2021-09-06 10:29:50 +03:00
if (isset($params['date']) and preg_match("/^\d{4}\-(0[1-9]|1[012])\-(0[1-9]|[12][0-9]|3[01])$/", $params['date']) and !isset($params['id'])) {
$this->created_at = $params['date'];
2020-02-05 12:08:01 +03:00
}
2021-09-06 10:29:50 +03:00
// 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;
// }
2020-02-05 12:08:01 +03:00
// grid filtering conditions
2021-09-06 10:29:50 +03:00
// Debug::dd($params['date']);
2020-02-05 12:08:01 +03:00
$query->andFilterWhere([
2021-09-06 10:29:50 +03:00
'user_card.id' => $this->id,
'reports.created_at' => $this->created_at,
2020-02-05 12:08:01 +03:00
'user_card_id' => $this->user_card_id,
]);
$query->andFilterWhere(['like', 'today', $this->today])
->andFilterWhere(['like', 'difficulties', $this->difficulties])
->andFilterWhere(['like', 'tomorrow', $this->tomorrow])
2021-09-06 10:29:50 +03:00
->andFilterWhere(['like', 'user_card.fio', $this->fio])
->andFilterWhere(['=', 'YEAR(reports.created_at)', $this->year])
->andFilterWhere(['=', 'MONTH(reports.created_at)', $this->month]);
2020-02-05 12:08:01 +03:00
return $dataProvider;
}
}