Exemplo n.º 1
0
 public function actionExiste($ci)
 {
     $p = tblPersona::find()->where("ci='{$ci}'")->one();
     //print_r($fu->one());
     if ($p != null) {
         $fu = $p->getTblFuncionario();
         return json_encode(['cant' => 1, 'persona' => $p->attributes, "funcionario" => $fu->one()->attributes]);
     } else {
         return json_encode(['cant' => 0, 'persona' => null, "funcionario" => null]);
     }
 }
Exemplo n.º 2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = tblPersona::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(['id' => $this->id, 'fech_naci' => $this->fech_naci]);
     $query->andFilterWhere(['like', 'ci', $this->ci])->andFilterWhere(['like', 'ci_exp', $this->ci_exp])->andFilterWhere(['like', 'nombres', $this->nombres])->andFilterWhere(['like', 'ap_paterno', $this->ap_paterno])->andFilterWhere(['like', 'ap_materno', $this->ap_materno])->andFilterWhere(['like', 'genero', $this->genero]);
     return $dataProvider;
 }