business form changes

This commit is contained in:
gandhimathi 2019-01-23 18:52:45 +05:30
parent ba2c490974
commit 1e2c1f4b0c

View File

@ -1137,14 +1137,20 @@
<mat-card *ngIf="businessForm.controls['applicant_use_mobile_wallets'] || businessForm.controls['applicant_use_pos_machines']"> <mat-card *ngIf="businessForm.controls['applicant_use_mobile_wallets'] || businessForm.controls['applicant_use_pos_machines']">
<mat-card-header> <mat-card-header>
<!-- <mat-card-title></mat-card-title> --> <mat-card-title>Digital Payments</mat-card-title>
</mat-card-header> </mat-card-header>
<mat-card-content> <mat-card-content>
<mat-form-field style="width:84%;" *ngIf="businessForm.controls['applicant_use_mobile_wallets']"> <mat-form-field style="width:84%;" *ngIf="businessForm.controls['applicant_use_mobile_wallets']">
<input matInput placeholder="Does the Applicant Use Mobile Wallets / UPI Apps" formControlName="applicant_use_mobile_wallets"> <mat-select placeholder="Does the Applicant Use Mobile Wallets / UPI Apps" formControlName="applicant_use_mobile_wallets">
</mat-form-field> <mat-option value="yes">Yes</mat-option>
<mat-option value="no">No</mat-option>
</mat-select>
</mat-form-field>
<mat-form-field style="width:84%;" *ngIf="businessForm.controls['applicant_use_pos_machines']"> <mat-form-field style="width:84%;" *ngIf="businessForm.controls['applicant_use_pos_machines']">
<input matInput placeholder="Does the Applicant Use POS Machines in His Business / Profession" formControlName="applicant_use_pos_machines"> <mat-select placeholder="Does the Applicant Use POS Machines in His Business / Profession" formControlName="applicant_use_pos_machines">
<mat-option value="yes">Yes</mat-option>
<mat-option value="no">No</mat-option>
</mat-select>
</mat-form-field> </mat-form-field>
</mat-card-content> </mat-card-content>