E

Size: a a a
E
N
A
E
Ln
getSalaryExcelFile(dataInfo).subscribe(data=>{
let fileName = 'Export.xlsx';
let blob = new Blob(data, {type:'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'});
A
getSalaryExcelFile(dataInfo).subscribe(data=>{
let fileName = 'Export.xlsx';
let blob = new Blob(data, {type:'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'});
Ln
public getSalaryExcelFile(salaryReviewId: string, selectedOrganizationUnitId: string, state: State, includeChildren: boolean): Observable<any> {
const requestData = {
pagingInfo: {
skip: 0,
take: state.take
},
sort: state.sort,
group: state.group,
filter: state.filter,
organizationUnitId: selectedOrganizationUnitId,
includeChildren: includeChildren
};
return this.http.post<SalaryReviewPageData>(this.getUrl(salaryReviewId + '/excel'), requestData);
}
Ln
A
Ln
A
N
S
N
S
AO
AO