86 lines
2.7 KiB
PHP
86 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace frontend\models;
|
|
|
|
use Yii;
|
|
use yii\base\Model;
|
|
use yii\data\ActiveDataProvider;
|
|
use common\models\Customer;
|
|
|
|
/**
|
|
* CustomerSearch represents the model behind the search form about `common\models\Customer`.
|
|
*/
|
|
class CustomerSearch extends Customer
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
[['id_customer', 'id_customer_card', 'id_user', 'id_partner_card', 'id_proposer', 'sex'], 'integer'],
|
|
[['name', 'email', 'password', 'phone', 'date_stundent_card_expire', 'birthdate', 'image', 'description', 'tax_number', 'country', 'zip', 'city', 'address', '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($params)
|
|
{
|
|
$query = Customer::find();
|
|
|
|
$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->andFilterWhere([
|
|
'id_customer' => $this->id_customer,
|
|
'id_customer_card' => $this->id_customer_card,
|
|
'id_user' => $this->id_user,
|
|
'id_partner_card' => $this->id_partner_card,
|
|
'id_proposer' => $this->id_proposer,
|
|
'sex' => $this->sex,
|
|
'date_stundent_card_expire' => $this->date_stundent_card_expire,
|
|
'birthdate' => $this->birthdate,
|
|
'created_at' => $this->created_at,
|
|
'updated_at' => $this->updated_at,
|
|
]);
|
|
|
|
$query->andFilterWhere(['like', 'name', $this->name])
|
|
->andFilterWhere(['like', 'email', $this->email])
|
|
->andFilterWhere(['like', 'password', $this->password])
|
|
->andFilterWhere(['like', 'phone', $this->phone])
|
|
->andFilterWhere(['like', 'image', $this->image])
|
|
->andFilterWhere(['like', 'description', $this->description])
|
|
->andFilterWhere(['like', 'tax_number', $this->tax_number])
|
|
->andFilterWhere(['like', 'country', $this->country])
|
|
->andFilterWhere(['like', 'zip', $this->zip])
|
|
->andFilterWhere(['like', 'city', $this->city])
|
|
->andFilterWhere(['like', 'address', $this->address]);
|
|
|
|
return $dataProvider;
|
|
}
|
|
}
|