add emp_id in mw sales report

This commit is contained in:
venbatechnologies@gmail.com 2022-01-18 08:58:49 +05:30
parent c54ada3aec
commit 9885e7d3c3
3 changed files with 10 additions and 2 deletions

View File

@ -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">

View File

@ -43,6 +43,7 @@ export class MisReportsComponent implements OnInit {
'officer_name',
'status',
'createdon',
'emp_id',
'mail_status'
];
expandStatus: boolean=true;

View File

@ -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})
}