update template batch upload disbursement

This commit is contained in:
Wikzyy
2025-05-18 14:42:07 +07:00
parent b8cadc03c0
commit ffcb49d46d
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ const ListToolbar = () => {
settrxDate({
from: formatDate(today),
to: formatDate(nextWeek)
to: formatDate(nextWeek)
});
}, []);
@ -37,7 +37,7 @@ const ListToolbar = () => {
const handleExportData = () => {
const link = document.createElement('a');
link.href = toAbsoluteUrl('/media/file-templates/template-of-upload-batch.xlsx');
link.href = toAbsoluteUrl('/media/file-templates/upload-batch-template.xlsx');
link.download = 'upload-batch-template.xlsx';
document.body.appendChild(link);
link.click();