current loan : ps
This commit is contained in:
parent
696e1ffdae
commit
6f40dd47af
@ -62,10 +62,8 @@
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width:45%;">
|
||||
<input matInput autocomplete="off" placeholder="Loan Amount"
|
||||
formControlName="loan_amount" OnlyNumber type="text"
|
||||
(keyup)="inWords($event,i,1)">
|
||||
<mat-hint my-mat-hint align="start" style="font-size:90%" *ngIf="details.get('loan_amount').value != ''">{{"₹"}}
|
||||
{{amtInwords[i]}} Only</mat-hint>
|
||||
formControlName="loan_amount" OnlyNumber type="text">
|
||||
<mat-hint align="start" style="font-size:90%" *ngIf="details.get('loan_amount').value != ''">{{"₹"}} {{details.get('loan_amount').value | numberToWords}} Only</mat-hint>
|
||||
</mat-form-field>
|
||||
<mat-form-field style="width:45%;">
|
||||
<mat-select placeholder="Lender" formControlName="lender"
|
||||
@ -115,12 +113,18 @@
|
||||
formControlName="other_frequency">
|
||||
</mat-form-field>
|
||||
<mat-form-field *ngIf="details.get('frequency').value != ''" style="width:45%">
|
||||
|
||||
<input matInput autocomplete="off" [placeholder]="placeholderName[i] != '' ? placeholderName[i] : 'Instalment Amount' "
|
||||
formControlName="emi" OnlyNumber type="text" (keyup)="inWords($event,i,2)">
|
||||
<!-- <input matInput autocomplete="off" placeholder="details.get('loan_type').value + Instalment Amount " formControlName="emi" OnlyNumber type="text" (keyup)="inWords($event,i,2)"> -->
|
||||
<mat-hint my-mat-hint align="start" style="font-size:90%" *ngIf="details.get('emi').value != ''">{{"₹"}}
|
||||
{{emiAmtInwords[i]}} Only</mat-hint>
|
||||
formControlName="emi" OnlyNumber type="text">
|
||||
<mat-hint align="start" style="font-size:90%" *ngIf="details.get('emi').value != ''">{{"₹"}} {{details.get('emi').value | numberToWords}} Only</mat-hint>
|
||||
|
||||
</mat-form-field>
|
||||
|
||||
<!-- <input matInput (keyup)="inWords($event,i,2)">
|
||||
<input matInput autocomplete="off" placeholder="details.get('loan_type').value + Instalment Amount " formControlName="emi" OnlyNumber type="text" (keyup)="inWords($event,i,2)">
|
||||
<mat-hint my-mat-hint align="start" style="font-size:90%" *ngIf="details.get('emi').value != ''">{{"₹"}}
|
||||
{{emiAmtInwords[i]}} Only</mat-hint> -->
|
||||
|
||||
<!-- <mat-form-field>
|
||||
<input matInput autocomplete="off" placeholder="Lender" formControlName="lender" >
|
||||
</mat-form-field> -->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user