예제 #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = ClientSurvey::find();
     $query->joinWith(['client']);
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $dataProvider->sort->attributes['client'] = ['asc' => ['client.nama_lengkap' => SORT_ASC], 'desc' => ['client.nama_lengkap' => SORT_DESC]];
     $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(['client_id' => $this->client_id, 'qa_trans_kwalitas_jalan' => $this->qa_trans_kwalitas_jalan, 'qa_energy_listrik' => $this->qa_energy_listrik, 'qa_water_mng' => $this->qa_water_mng, 'qa_equity_to_asset_ratio' => $this->qa_equity_to_asset_ratio, 'qa_fixed_asset_to_total_equity_ratio' => $this->qa_fixed_asset_to_total_equity_ratio, 'qn_debt_to_equity_ratio' => $this->qn_debt_to_equity_ratio, 'qn_long_term_liabilities' => $this->qn_long_term_liabilities, 'ps_extraversi_sikap_sosial' => $this->ps_extraversi_sikap_sosial, 'ps_agreebleness' => $this->ps_agreebleness]);
     $query->andFilterWhere(['like', 'client.nama_lengkap', $this->client]);
     return $dataProvider;
 }
예제 #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getClientSurvey()
 {
     return $this->hasOne(ClientSurvey::className(), ['client_id' => 'id']);
 }
예제 #3
0
 /**
  * Finds the ClientSurvey model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return ClientSurvey the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = ClientSurvey::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }