add emp_id in mw sales report
This commit is contained in:
parent
c54ada3aec
commit
9885e7d3c3
@ -133,6 +133,11 @@
|
||||
<td mat-cell *matCellDef="let row">
|
||||
<span *ngIf="row.createdon" mat-line> {{row.createdon | date: 'dd-MM-yyyy hh:mm a'}}</span> </td>
|
||||
</ng-container>
|
||||
<ng-container matColumnDef="emp_id">
|
||||
<th mat-header-cell *matHeaderCellDef mat-sort-header>Emp ID</th>
|
||||
<td mat-cell *matCellDef="let row">
|
||||
<span *ngIf="row.mail_status" mat-line> {{row.smc_emp_code}}</span> </td>
|
||||
</ng-container>
|
||||
<ng-container matColumnDef="mail_status">
|
||||
<th mat-header-cell *matHeaderCellDef mat-sort-header>Mail Status</th>
|
||||
<td mat-cell *matCellDef="let row">
|
||||
|
||||
@ -43,6 +43,7 @@ export class MisReportsComponent implements OnInit {
|
||||
'officer_name',
|
||||
'status',
|
||||
'createdon',
|
||||
'emp_id',
|
||||
'mail_status'
|
||||
];
|
||||
expandStatus: boolean=true;
|
||||
|
||||
@ -15,10 +15,12 @@ export class SalesPdService {
|
||||
constructor(private _http:HttpClient) { }
|
||||
|
||||
salesPDMisReport(params): Observable<any>{
|
||||
|
||||
return this._http.post(api_url+'salesPDMisReport',params)
|
||||
}
|
||||
|
||||
advancedFilter(params): Observable<any>{
|
||||
|
||||
return this._http.post(api_url+'filterSalesPDList',{"records":params})
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user