Exemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Loans::find();
     $dataProvider = new ActiveDataProvider(['query' => $query, 'pagination' => ['pageSize' => 5]]);
     $this->load($params);
     if (!$this->validate()) {
         return $dataProvider;
     }
     $query->andFilterWhere(['loanId' => $this->loanId, 'userId' => $this->userId, 'amount' => $this->amount, 'interest' => $this->interest, 'duration' => $this->duration, 'dateApplied' => $this->dateApplied, 'dateLoanEnds' => $this->dateLoanEnds, 'campaign' => $this->campaign, 'status' => $this->status]);
     return $dataProvider;
 }
Exemplo n.º 2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Loans::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->joinWith('user');
     $query->andFilterWhere(['amount' => $this->amount, 'interest' => $this->interest, 'duration' => $this->duration, 'dateApplied' => $this->dateApplied, 'dateLoanEnds' => $this->dateLoanEnds, 'campaign' => $this->campaign, 'status' => $this->status])->andFilterWhere(['or', ['like', 'users.firstName', $this->userId], ['like', 'users.lastName', $this->userId]]);
     //->andFilterWhere(['like', 'users.lastName', $this->userId])
     return $dataProvider;
 }
Exemplo n.º 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getLoans()
 {
     return $this->hasMany(Loans::className(), ['userId' => 'userId']);
 }
Exemplo n.º 4
0
 /**
  * Finds the Loans model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Loans the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Loans::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }