MW Credit PD MIS Report added two key
This commit is contained in:
parent
9838fada46
commit
dc0697b4fd
@ -112,6 +112,12 @@
|
|||||||
<td mat-cell *matCellDef="let row">
|
<td mat-cell *matCellDef="let row">
|
||||||
<span *ngIf="row.applicant_name" mat-line>{{row.applicant_name}}</span> </td>
|
<span *ngIf="row.applicant_name" mat-line>{{row.applicant_name}}</span> </td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="lender_applicant_id" sticky>
|
||||||
|
<th mat-header-cell *matHeaderCellDef mat-sort-header>Lender Applicant ID </th>
|
||||||
|
<td mat-cell *matCellDef="let row">
|
||||||
|
<span *ngIf="row.lender_applicant_id" mat-line>{{row.lender_applicant_id}}</span> </td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
<ng-container matColumnDef="credit_pd_type" sticky>
|
<ng-container matColumnDef="credit_pd_type" sticky>
|
||||||
<th mat-header-cell *matHeaderCellDef mat-sort-header>Credit PD Type</th>
|
<th mat-header-cell *matHeaderCellDef mat-sort-header>Credit PD Type</th>
|
||||||
@ -138,6 +144,12 @@
|
|||||||
<span *ngIf="row.pd_status" mat-line>{{row.pd_status}}</span> </td>
|
<span *ngIf="row.pd_status" mat-line>{{row.pd_status}}</span> </td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="vendor_status">
|
||||||
|
<th mat-header-cell *matHeaderCellDef mat-sort-header>Vendor Status</th>
|
||||||
|
<td mat-cell *matCellDef="let row">
|
||||||
|
<span *ngIf="row.vendor_status" mat-line>{{row.vendor_status}}</span> </td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
<ng-container matColumnDef="createdon">
|
<ng-container matColumnDef="createdon">
|
||||||
<th mat-header-cell *matHeaderCellDef mat-sort-header>Date</th>
|
<th mat-header-cell *matHeaderCellDef mat-sort-header>Date</th>
|
||||||
<td mat-cell *matCellDef="let row">
|
<td mat-cell *matCellDef="let row">
|
||||||
|
|||||||
@ -38,13 +38,15 @@ export class SmcCreditComponent implements OnInit {
|
|||||||
pageIndex:number=0
|
pageIndex:number=0
|
||||||
|
|
||||||
displayedColumns = ['serialno',
|
displayedColumns = ['serialno',
|
||||||
// 'credit_pd_id',
|
// 'credit_pd_id',
|
||||||
'credit_pd_sno',
|
'credit_pd_sno',
|
||||||
'applicant_name',
|
'applicant_name',
|
||||||
|
'lender_applicant_id',
|
||||||
'credit_pd_type',
|
'credit_pd_type',
|
||||||
'product_abbr',
|
'product_abbr',
|
||||||
'officer_name',
|
'officer_name',
|
||||||
'status',
|
'status',
|
||||||
|
'vendor_status',
|
||||||
'createdon'
|
'createdon'
|
||||||
//'remarks'
|
//'remarks'
|
||||||
//'add'
|
//'add'
|
||||||
@ -169,10 +171,12 @@ export class SmcCreditComponent implements OnInit {
|
|||||||
return {
|
return {
|
||||||
'Reference Number':val.pd_sno,
|
'Reference Number':val.pd_sno,
|
||||||
'Main Loan Applicant':val.applicant_name,
|
'Main Loan Applicant':val.applicant_name,
|
||||||
|
'Lender Applicant ID':val.lender_applicant_id,
|
||||||
'Credit PD Type':val.type_name,
|
'Credit PD Type':val.type_name,
|
||||||
'Product Type':val.abbr,
|
'Product Type':val.abbr,
|
||||||
'Credit Person':val.officer_name,
|
'Credit Person':val.officer_name,
|
||||||
'Status':val.pd_status,
|
'Status':val.pd_status,
|
||||||
|
'Vendor Status':val.vendor_status,
|
||||||
'Date':val.updatedon
|
'Date':val.updatedon
|
||||||
//'Remarks':val.mis_report_remarks
|
//'Remarks':val.mis_report_remarks
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user