Exemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Timportir::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(['idtimp' => $this->idtimp, 'tdafimportir_id' => $this->tdafimportir_id]);
     $query->andFilterWhere(['like', 'npwp', $this->npwp])->andFilterWhere(['like', 'nama', $this->nama])->andFilterWhere(['like', 'alamat', $this->alamat])->andFilterWhere(['like', 'alamat1', $this->alamat1])->andFilterWhere(['like', 'tel', $this->tel])->andFilterWhere(['like', 'fax', $this->fax])->andFilterWhere(['like', 'status', $this->status]);
     return $dataProvider;
 }
Exemplo n.º 2
0
 /**
  * Finds the Timportir model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $idtimp
  * @param integer $tdafimportir_id
  * @return Timportir the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($idtimp, $tdafimportir_id)
 {
     if (($model = Timportir::findOne(['idtimp' => $idtimp, 'tdafimportir_id' => $tdafimportir_id])) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }