You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const handleExport = (data) => {
const title = [
[
"SL.No",
"Employee Name",
"Portfolio data saved",
"Processed by",
"Processing and Checking of portfolio data",
"Processed by",
"Reconciliation of data and reports",
"Processed by",
"Review of reconciliation and reports",
"Processed by",
"2nd level review of reconciliation and reports submitted by SRM",
"Processed by",
"Release the report to the client",
"Processed by",
],
];
const handleExport = (data) => {
const title = [
[
"SL.No",
"Employee Name",
"Portfolio data saved",
"Processed by",
"Processing and Checking of portfolio data",
"Processed by",
"Reconciliation of data and reports",
"Processed by",
"Review of reconciliation and reports",
"Processed by",
"2nd level review of reconciliation and reports submitted by SRM",
"Processed by",
"Release the report to the client",
"Processed by",
],
];
};
handleExport(response?.data?.employeeData).then((url) => {
const downloadAnchorNode = document.createElement("a");
downloadAnchorNode.setAttribute("href", url);
downloadAnchorNode.setAttribute(
"download",
Customer_Analytics_Progress_${formattedDate}.xlsx
);
downloadAnchorNode.click();
downloadAnchorNode.remove();
});
The text was updated successfully, but these errors were encountered: