Exemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = ClnStandardTime::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(['STANDARD_TIME_GEN_NO' => $this->STANDARD_TIME_GEN_NO, 'CREATE_DATE' => $this->CREATE_DATE, 'UPDATE_DATE' => $this->UPDATE_DATE, 'VERSION' => $this->VERSION]);
     $query->andFilterWhere(['like', 'DATE_BEGIN', $this->DATE_BEGIN])->andFilterWhere(['like', 'DATE_END', $this->DATE_END])->andFilterWhere(['like', 'MONTH_BEGIN', $this->MONTH_BEGIN])->andFilterWhere(['like', 'MONTH_END', $this->MONTH_END])->andFilterWhere(['like', 'YEAR_BEGIN', $this->YEAR_BEGIN])->andFilterWhere(['like', 'YEAR_END', $this->YEAR_END])->andFilterWhere(['like', 'STANDARD_TIME', $this->STANDARD_TIME])->andFilterWhere(['like', 'CREATE_BY', $this->CREATE_BY])->andFilterWhere(['like', 'UPDATE_BY', $this->UPDATE_BY]);
     return $dataProvider;
 }
Exemplo n.º 2
0
 /**
  * Finds the ClnStandardTime model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return ClnStandardTime the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = ClnStandardTime::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }