/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = SnBank::find(); $dataProvider = new ActiveDataProvider(['query' => $query->where(['status' => [Status::STATUS_ACTIVE, Status::STATUS_INACTIVE]])]); $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, 'status' => $this->status, 'created_date' => $this->created_date, 'modified_date' => $this->modified_date]); $query->andFilterWhere(['like', 'bank', $this->bank])->andFilterWhere(['like', 'created_by', $this->created_by])->andFilterWhere(['like', 'modified_by', $this->modified_by]); return $dataProvider; }
/** * Finds the SnBank model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return SnBank the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = SnBank::findOne(['id' => $id, 'status' => [STATUS::STATUS_ACTIVE, STATUS::STATUS_INACTIVE]])) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }
?> <?php echo $form->field($model, 'makmakan_credit')->textInput(); ?> <?php echo $form->field($model, 'bank_account_number')->textInput(['maxlength' => true]); ?> <?php echo $form->field($model, 'bank_account_name')->textInput(['maxlength' => true]); ?> <?php echo $form->field($model, 'sn_bank_id')->dropDownList(ArrayHelper::map(SnBank::find()->where(['status' => [Status::STATUS_ACTIVE]])->all(), 'id', 'bank'), ['prompt' => 'Select Bank']); ?> <?php echo $form->field($model, 'file')->fileInput(); ?> <div class="form-group pull-right"> <?php echo Html::submitButton($model->isNewRecord ? 'Create' : 'Update', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']); ?> </div> <?php ActiveForm::end(); ?>
/** * @return \yii\db\ActiveQuery */ public function getSnBank() { return $this->hasOne(SnBank::className(), ['id' => 'sn_bank_id']); }
/** * @return \yii\db\ActiveQuery */ public function getBank() { return $this->hasOne(\common\models\SnBank::className(), ['id' => 'sn_bank_id']); }