UI Changes
This commit is contained in:
parent
1244dd14b8
commit
719d2940bc
@ -166,6 +166,12 @@
|
|||||||
<strong>Add More Banking Details</strong>
|
<strong>Add More Banking Details</strong>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div align="right">
|
||||||
|
<button mat-raised-button mat-icon-button matTooltip="Delete Banking Details" matTooltipPosition="above" (click)="deleteBankdetails(i)" *ngIf="bankingForm.controls.itemRows.controls.length > 1">
|
||||||
|
<mat-icon>delete</mat-icon>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
<!-- <button type="button" mat-button (click)="deleteBankdetails(i)" color="warn"
|
<!-- <button type="button" mat-button (click)="deleteBankdetails(i)" color="warn"
|
||||||
matTooltip="Delete"matTooltipPosition="left" *ngIf="!last">
|
matTooltip="Delete"matTooltipPosition="left" *ngIf="!last">
|
||||||
<strong>Delete Banking Details</strong>
|
<strong>Delete Banking Details</strong>
|
||||||
@ -175,11 +181,6 @@
|
|||||||
<button mat-button color="primary" (click)="nextStep()">End</button> -->
|
<button mat-button color="primary" (click)="nextStep()">End</button> -->
|
||||||
|
|
||||||
<!-- ngIf="i > 0" -->
|
<!-- ngIf="i > 0" -->
|
||||||
<div align="right">
|
|
||||||
<button mat-raised-button mat-icon-button matTooltip="Delete Banking Details" matTooltipPosition="above" (click)="deleteBankdetails(i)" *ngIf="!last">
|
|
||||||
<mat-icon>delete</mat-icon>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</mat-action-row>
|
</mat-action-row>
|
||||||
</mat-expansion-panel>
|
</mat-expansion-panel>
|
||||||
|
|||||||
@ -29,7 +29,7 @@ import {ActivatedRoute, Router} from "@angular/router";
|
|||||||
})
|
})
|
||||||
export class BankingDetailsComponent implements OnInit {
|
export class BankingDetailsComponent implements OnInit {
|
||||||
pdid: number;
|
pdid: number;
|
||||||
pageTitle: string ="Banking Information";
|
pageTitle: string ="Banking Details of Individuals";
|
||||||
public bankingForm: FormGroup;
|
public bankingForm: FormGroup;
|
||||||
step: number;
|
step: number;
|
||||||
private notifier: NotifierService;
|
private notifier: NotifierService;
|
||||||
@ -91,13 +91,13 @@ export class BankingDetailsComponent implements OnInit {
|
|||||||
this.existCompanyList = data.records.filter(val =>val.is_active===true);
|
this.existCompanyList = data.records.filter(val =>val.is_active===true);
|
||||||
}
|
}
|
||||||
|
|
||||||
let modifyCompanyList : any=[];
|
// let modifyCompanyList : any=[];
|
||||||
if(this.existCompanyList.length>0){
|
// if(this.existCompanyList.length>0){
|
||||||
modifyCompanyList = this.existCompanyList.map(element => {
|
// modifyCompanyList = this.existCompanyList.map(element => {
|
||||||
return {id:element.company_order_id.toString(),name:element.company_name,group_id:1};
|
// return {id:element.company_order_id.toString(),name:element.company_name,group_id:1};
|
||||||
});
|
// });
|
||||||
this.mergeCompanyApplicant.push({groupName:'COMPANIES',groupValues:modifyCompanyList})
|
// this.mergeCompanyApplicant.push({groupName:'COMPANIES',groupValues:modifyCompanyList})
|
||||||
}
|
// }
|
||||||
|
|
||||||
});
|
});
|
||||||
let modifyApplicantList: any=[];
|
let modifyApplicantList: any=[];
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user