cfpl final changes
This commit is contained in:
parent
3e751c1601
commit
ca2fe22e76
@ -19,10 +19,10 @@
|
||||
<ng-template matTabContent>
|
||||
<div fxLayout="row wrap">
|
||||
<div fxFlex="100">
|
||||
<mat-card>
|
||||
<mat-card *ngIf="lenderShortName != 'CFPL'">
|
||||
<mat-card>
|
||||
<mat-card-content class="matcard">
|
||||
<!--<mat-form-field style="width: 64%">
|
||||
<mat-form-field style="width: 64%">
|
||||
<mat-label>{{lenderShortName == 'CFPL' ? 'Facility' :'Loan'}} Amount Applied for ?</mat-label>
|
||||
<input matInput placeholder="Enter the amount" formControlName="loan_amount"
|
||||
OnlyNumber type="text" (change)="loanCalc()"
|
||||
@ -30,13 +30,13 @@
|
||||
|
||||
<mat-hint align="start" style="font-size:90%" *ngIf="loanDetailsForm.controls['loan_amount'].value != ''">{{"₹"}} {{ loanDetailsForm.controls['loan_amount'].value | numberToWords }} Only</mat-hint>
|
||||
|
||||
</mat-form-field>-->
|
||||
<mat-form-field style="width: 28%" *ngIf="lenderShortName != 'CFPL'">
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width: 28%" >
|
||||
<mat-label>{{lenderShortName == 'CFPL' ? 'Facility' :'Loan'}} Tenure applied for?</mat-label>
|
||||
<input matInput placeholder="No of months (Eg. 6)" formControlName="loan_tenure"
|
||||
OnlyNumber type="text" autocomplete="off">
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width:64%" *ngIf="lenderShortName != 'CFPL'">
|
||||
<mat-form-field style="width:64%">
|
||||
<mat-select placeholder="Sub Product" formControlName="sub_product"
|
||||
(selectionChange)="onChangeSubProduct($event.value)">
|
||||
<mat-option>Select</mat-option>
|
||||
@ -45,7 +45,7 @@
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field style="width: 64%" *ngIf="lenderShortName != 'CFPL'">
|
||||
<mat-form-field style="width: 64%">
|
||||
<mat-select multiple (selectionChange)="endUserChange($event.value)"
|
||||
placeholder="What is the end use" formControlName="end_use">
|
||||
<mat-option *ngFor="let enduse of m_endUseForLoan" [value]="enduse.enduse_of_loan_id">{{
|
||||
@ -77,7 +77,7 @@
|
||||
</span>
|
||||
|
||||
<div *ngIf="lenderShortName != 'CLIX' && lenderShortName != 'MWISE' || prod_catagory == 'LFMP'">
|
||||
<mat-form-field style="width: 64%" *ngIf="lenderShortName != 'CFPL'">
|
||||
<mat-form-field style="width: 64%">
|
||||
<mat-select placeholder="Is there a balance transfer ? " (selectionChange)="selectedBalancesTransferChanges($event.value)"
|
||||
formControlName="is_transfer">
|
||||
<mat-option>Select</mat-option>
|
||||
@ -117,17 +117,17 @@
|
||||
autocomplete="off">
|
||||
<mat-hint align="start" style="font-size:90%" *ngIf="loanDetailsForm.controls['topup_amount'].value != ''">{{"₹"}} {{ loanDetailsForm.controls['topup_amount'].value | numberToWords }} Only</mat-hint>
|
||||
</mat-form-field>
|
||||
|
||||
|
||||
|
||||
<!--<mat-form-field style="width:64%" *ngIf="loanDetailsForm.controls['topup_amount'].value > 0 && (lenderShortName != 'CLIX' && lenderShortName != 'MWISE' || prod_catagory == 'LFMP')">
|
||||
|
||||
<mat-form-field style="width:64%" *ngIf="loanDetailsForm.controls['topup_amount'].value > 0 && (lenderShortName != 'CLIX' && lenderShortName != 'MWISE' || prod_catagory == 'LFMP')">
|
||||
<mat-select placeholder="What is the End Use of the Top Up?"
|
||||
formControlName="end_use_topup">
|
||||
<mat-option>Select</mat-option>
|
||||
<mat-option *ngFor="let list of m_endUseOFTopUpList" [value]="list.end_use_of_topup_id">{{
|
||||
list.end_use_of_topup }}</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>-->
|
||||
</mat-form-field>
|
||||
<mat-form-field *ngIf="loanDetailsForm.controls['end_use_topup'].value == 1"
|
||||
style="width: 28%">
|
||||
<input matInput placeholder="Specify End Use of Top Up *"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user