other freq : ps
This commit is contained in:
parent
9fe754a87f
commit
dd72bec247
@ -47,6 +47,9 @@
|
|||||||
<mat-option *ngFor="let freq of frequencyData" value="{{freq.frequency_id}}">{{freq.name}}</mat-option>
|
<mat-option *ngFor="let freq of frequencyData" value="{{freq.frequency_id}}">{{freq.name}}</mat-option>
|
||||||
</mat-select>
|
</mat-select>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
<mat-form-field *ngIf="details.get('frequency').value == 8">
|
||||||
|
<input matInput autocomplete="off" placeholder="Specify Frequency" formControlName="other_frequency">
|
||||||
|
</mat-form-field>
|
||||||
<mat-form-field *ngIf="details.get('frequency').value != ''" style="width:35%">
|
<mat-form-field *ngIf="details.get('frequency').value != ''" style="width:35%">
|
||||||
<input matInput autocomplete="off" [placeholder]="placeholderName[i] != '' ? placeholderName[i] : 'Instalment Amount' " formControlName="emi" (keypress)="keyPress($event)" (keyup)="inWords($event,i,2)">
|
<input matInput autocomplete="off" [placeholder]="placeholderName[i] != '' ? placeholderName[i] : 'Instalment Amount' " formControlName="emi" (keypress)="keyPress($event)" (keyup)="inWords($event,i,2)">
|
||||||
<mat-hint align="start" style="font-size:70%" *ngIf="details.get('emi').value != ''">{{"₹"}} {{emiAmtInwords[i]}} Only</mat-hint>
|
<mat-hint align="start" style="font-size:70%" *ngIf="details.get('emi').value != ''">{{"₹"}} {{emiAmtInwords[i]}} Only</mat-hint>
|
||||||
|
|||||||
@ -165,6 +165,7 @@ export class CurrentLoanComponent implements OnInit {
|
|||||||
return this.fb.group({
|
return this.fb.group({
|
||||||
loan_amount: [''],
|
loan_amount: [''],
|
||||||
frequency:[''],
|
frequency:[''],
|
||||||
|
other_frequency:[''],
|
||||||
emi: [''],
|
emi: [''],
|
||||||
loan_type: [''],
|
loan_type: [''],
|
||||||
others_loan_type: [''],
|
others_loan_type: [''],
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user