Пример #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Digital::find();
     $query->joinWith(['department', 'course', 'personnel']);
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $dataProvider->pagination->pageSize = 100;
     //$this->load($params);
     $dataProvider->sort->attributes['department.name'] = ['asc' => ['department.name' => SORT_ASC], 'desc' => ['department.name' => SORT_DESC]];
     $dataProvider->sort->attributes['course.title'] = ['asc' => ['course.title' => SORT_ASC], 'desc' => ['course.title' => SORT_DESC]];
     $dataProvider->sort->attributes['personnel.full_name'] = ['asc' => ['personnel.full_name' => SORT_ASC], 'desc' => ['personnel.full_name' => SORT_DESC]];
     $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' => $this->id, 'date_work' => $this->date_work, 'department_id' => $this->department_id, 'num_pages' => $this->num_pages, 'paper_type' => $this->paper_type, 'num_plates' => $this->num_plates, 'course_id' => $this->course_id, 'num_series' => $this->num_series, 'personnel_id' => $this->personnel_id, 'total_pages' => $this->total_pages, 'total_papers' => $this->total_papers]);
     $query->andFilterWhere(['like', 'regis_num', $this->regis_num])->andFilterWhere(['like', 'subject', $this->subject])->andFilterWhere(['like', 'department.name', $this->department])->andFilterWhere(['like', 'course.title', $this->course])->andFilterWhere(['like', 'personnel.full_name', $this->personnel]);
     return $dataProvider;
 }
Пример #2
0
 /**
  * Finds the Digital model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return Digital the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Digital::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }