예제 #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Solicitation::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id, 'created' => $this->created, 'updated' => $this->updated, 'closed' => $this->closed, 'user_id' => $this->user_id, 'status_id' => $this->status_id, 'location_id' => $this->location_id, 'typeperson_id' => $this->typeperson_id, 'cpf_cnpj' => $this->cpf_cnpj]);
     $query->andFilterWhere(['like', 'notes', $this->notes]);
     return $dataProvider;
 }
예제 #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTbSolicitations()
 {
     return $this->hasMany(Solicitation::className(), ['status_id' => 'id']);
 }
예제 #3
0
파일: Files.php 프로젝트: phprocks/cadastro
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getSolicitation()
 {
     return $this->hasOne(Solicitation::className(), ['id' => 'solicitation_id']);
 }
예제 #4
0
 /**
  * Finds the Solicitation model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Solicitation the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Solicitation::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('A pagina solicitada não existe ou você não possui permissão para visualizar!');
     }
 }