Example #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Friskhead::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(['risk_id' => $this->risk_id, 'risk_date' => $this->risk_date, 'department' => $this->department, 'outcome_price' => $this->outcome_price, 'risk_simple' => $this->risk_simple, 'date_input' => $this->date_input, 'last_update' => $this->last_update, 'clinictype' => $this->clinictype, 'place_id' => $this->place_id, 'date_complete' => $this->date_complete, 'input_complain' => $this->input_complain]);
     $query->andFilterWhere(['like', 'risk_time', $this->risk_time])->andFilterWhere(['like', 'miss', $this->miss])->andFilterWhere(['like', 'event', $this->event])->andFilterWhere(['like', 'safety', $this->safety])->andFilterWhere(['like', 'outcome_pt', $this->outcome_pt])->andFilterWhere(['like', 'outcome_guest', $this->outcome_guest])->andFilterWhere(['like', 'outcome_staff', $this->outcome_staff])->andFilterWhere(['like', 'solve_begin', $this->solve_begin])->andFilterWhere(['like', 'sum_solve', $this->sum_solve])->andFilterWhere(['like', 'risk_level', $this->risk_level])->andFilterWhere(['like', 'risk_head_department', $this->risk_head_department])->andFilterWhere(['like', 'risk_status', $this->risk_status])->andFilterWhere(['like', 'prohead', $this->prohead])->andFilterWhere(['like', 'prodetail', $this->prodetail])->andFilterWhere(['like', 'program_text', $this->program_text])->andFilterWhere(['like', 'login_name', $this->login_name])->andFilterWhere(['like', 'risk_sum_dep', $this->risk_sum_dep])->andFilterWhere(['like', 'last_staff', $this->last_staff])->andFilterWhere(['like', 'print_url', $this->print_url])->andFilterWhere(['like', 'act_st', $this->act_st])->andFilterWhere(['like', 'ref', $this->ref])->andFilterWhere(['like', 'staff', $this->staff])->andFilterWhere(['like', 'risk_again', $this->risk_again])->andFilterWhere(['like', 'risk_ref_no', $this->risk_ref_no]);
     return $dataProvider;
 }
 public function actionDeletefileAjax()
 {
     $model = Uploadsp::findOne(Yii::$app->request->post('key'));
     if ($model !== NULL) {
         $filename = Friskhead::getUploadPath() . $model->ref . '/' . $model->real_filename;
         $thumbnail = Friskhead::getUploadPath() . $model->ref . '/thumbnail/' . $model->real_filename;
         if ($model->delete()) {
             @unlink($filename);
             @unlink($thumbnail);
             echo json_encode(['success' => true]);
         } else {
             echo json_encode(['success' => false]);
         }
     } else {
         echo json_encode(['success' => false]);
     }
 }