не работает ооп
This commit is contained in:
@ -2,16 +2,21 @@
|
||||
|
||||
namespace backend\modules\reports\models;
|
||||
|
||||
use common\classes\Debug;
|
||||
use yii\base\Model;
|
||||
use yii\data\ActiveDataProvider;
|
||||
use common\models\Reports;
|
||||
|
||||
|
||||
/**
|
||||
* ReportsSearch represents the model behind the search form of `common\models\Reports`.
|
||||
*/
|
||||
class ReportsSearch extends Reports
|
||||
{
|
||||
public $fio;
|
||||
public $month;
|
||||
public $year;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
@ -57,23 +62,36 @@ class ReportsSearch extends Reports
|
||||
|
||||
$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;
|
||||
|
||||
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'];
|
||||
}
|
||||
|
||||
// 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;
|
||||
// }
|
||||
|
||||
// grid filtering conditions
|
||||
|
||||
|
||||
// Debug::dd($params['date']);
|
||||
|
||||
$query->andFilterWhere([
|
||||
'id' => $this->id,
|
||||
'created_at' => $this->created_at,
|
||||
'user_card.id' => $this->id,
|
||||
'reports.created_at' => $this->created_at,
|
||||
'user_card_id' => $this->user_card_id,
|
||||
]);
|
||||
|
||||
$query->andFilterWhere(['like', 'today', $this->today])
|
||||
->andFilterWhere(['like', 'difficulties', $this->difficulties])
|
||||
->andFilterWhere(['like', 'tomorrow', $this->tomorrow])
|
||||
->andFilterWhere(['like', 'user_card.fio', $this->fio]);
|
||||
->andFilterWhere(['like', 'user_card.fio', $this->fio])
|
||||
->andFilterWhere(['=', 'YEAR(reports.created_at)', $this->year])
|
||||
->andFilterWhere(['=', 'MONTH(reports.created_at)', $this->month]);
|
||||
|
||||
|
||||
return $dataProvider;
|
||||
}
|
||||
|
Reference in New Issue
Block a user