fitness-web/frontend/models/TicketSearch.php

83 lines
2.2 KiB
PHP

<?php
namespace frontend\models;
use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use common\models\Ticket;
/**
* TicketSearch represents the model behind the search form about `common\models\Ticket`.
*/
class TicketSearch extends Ticket
{
/**
* @inheritdoc
*/
public function rules()
{
return [
[['id_ticket', 'id_user', 'id_ticket_type', 'id_account', 'id_discount', 'max_usage_count', 'usage_count', 'status', 'price_brutto'], 'integer'],
[['start', 'end', 'comment', 'created_at', 'updated_at'], '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($card, $params)
{
$query = Ticket::find();
$dataProvider = new ActiveDataProvider([
'query' => $query,
'sort'=> ['defaultOrder' => ['created_at'=>SORT_DESC]]
]);
$query->innerJoinWith( 'card' );
$query->andWhere( ['card.id_card' => $card->id_card ] );
$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->andFilterWhere([
'id_user' => $this->id_user,
'id_ticket_type' => $this->id_ticket_type,
'id_account' => $this->id_account,
'id_discount' => $this->id_discount,
'start' => $this->start,
'end' => $this->end,
'max_usage_count' => $this->max_usage_count,
'usage_count' => $this->usage_count,
'status' => $this->status,
'price_brutto' => $this->price_brutto,
'created_at' => $this->created_at,
'updated_at' => $this->updated_at,
]);
$query->andFilterWhere(['like', 'comment', $this->comment]);
return $dataProvider;
}
}