/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = CaseHasCaseStatus::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(['case_has_case_status_id' => $this->case_has_case_status_id, 'case_id' => $this->case_id, 'case_status_id' => $this->case_status_id, 'case_date_time' => $this->case_date_time, 'employee_id' => $this->employee_id]);
     return $dataProvider;
 }
コード例 #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCaseHasCaseStatuses()
 {
     return $this->hasMany(CaseHasCaseStatus::className(), ['employee_id' => 'employee_id']);
 }
 /**
  * Finds the CaseHasCaseStatus model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return CaseHasCaseStatus the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = CaseHasCaseStatus::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
コード例 #4
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCaseHasCaseStatuses()
 {
     return $this->hasMany(CaseHasCaseStatus::className(), ['case_status_case_status_id' => 'case_status_id']);
 }