surat/frontend/modules/administrator/models/HospitalImportServiceCharge...

76 lines
2.1 KiB
PHP
Raw Normal View History

2026-02-16 07:32:27 +00:00
<?php
namespace frontend\modules\administrator\models;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use common\models\HospitalImportServiceCharge;
/**
* HospitalImportServiceChargeSearch represents the model behind the search form of `common\models\HospitalImportServiceCharge`.
*/
class HospitalImportServiceChargeSearch extends HospitalImportServiceCharge
{
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['id', 'hospital_import_id', 'test_qty', 'pat_orderitemid'], 'integer'],
[['req_no', 'test_code', 'test_name', 'cdg_code', 'test_costunit'], '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 = HospitalImportServiceCharge::find();
// add conditions that should always apply here
$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;
}
// grid filtering conditions
$query->andFilterWhere([
'id' => $this->id,
'hospital_import_id' => $this->hospital_import_id,
'test_qty' => $this->test_qty,
'pat_orderitemid' => $this->pat_orderitemid,
]);
$query->andFilterWhere(['like', 'req_no', $this->req_no])
->andFilterWhere(['like', 'test_code', $this->test_code])
->andFilterWhere(['like', 'test_name', $this->test_name])
->andFilterWhere(['like', 'cdg_code', $this->cdg_code])
->andFilterWhere(['like', 'test_costunit', $this->test_costunit]);
return $dataProvider;
}
}