Ejemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = FileManage::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, 'STATUS' => $this->STATUS, 'CREATE_AT' => $this->CREATE_AT, 'UPDATE_AT' => $this->UPDATE_AT]);
     $query->andFilterWhere(['like', 'USER_ID', $this->USER_ID])->andFilterWhere(['like', 'GROUP', $this->GROUP])->andFilterWhere(['like', 'FILE_PATH', $this->FILE_PATH])->andFilterWhere(['like', 'FILE_NM', $this->FILE_NM])->andFilterWhere(['like', 'FILE_NM64', $this->FILE_NM64])->andFilterWhere(['like', 'CREATE_BY', $this->CREATE_BY])->andFilterWhere(['like', 'UPDATE_BY', $this->UPDATE_BY]);
     return $dataProvider;
 }
Ejemplo n.º 2
0
 public function actionSignatureSaved()
 {
     $hsl = \Yii::$app->request->post();
     $model = $this->findModel($hsl['Employe']['EMP_ID']);
     $paramFile = Yii::$app->getRequest()->getQueryParam('id');
     $paramID = $paramFile != false ? $paramFile : '0';
     if ($paramFile == true) {
         $modelUpload = FileManage::find()->where(['ID' => $paramID])->One();
     } else {
         $modelUpload = new FileManage();
     }
     if ($model->load(Yii::$app->request->post())) {
         //$hsl = \Yii::$app->request->post();
         $model->UPDATED_BY = Yii::$app->user->identity->username;
         $model->SIGSVGBASE64 = $hsl['Employe']['SIGSVGBASE64'];
         $model->SIGSVGBASE30 = $hsl['Employe']['SIGSVGBASE30'];
         $model->save();
         if ($model->save()) {
             return $this->render('_signature', ['model' => $model, 'modelUpload' => $modelUpload]);
         }
     } else {
         return $this->render('_signature_form', ['model' => $model]);
     }
 }
Ejemplo n.º 3
0
 /**
  * Finds the FileManage model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return FileManage the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = FileManage::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }