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