From 7e92a9b7a7d00d365c04316cf7efb512c301c06f Mon Sep 17 00:00:00 2001 From: Ravi Lodhi Date: Tue, 3 Dec 2024 14:20:20 +0530 Subject: [PATCH] Fixed: Incldued acceptedByUserLoginId instead of uploadedByUserLogin in closed count report (#460). --- src/components/DownloadClosedCountModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/DownloadClosedCountModal.vue b/src/components/DownloadClosedCountModal.vue index 05ce6df9..1dcaf137 100644 --- a/src/components/DownloadClosedCountModal.vue +++ b/src/components/DownloadClosedCountModal.vue @@ -234,7 +234,7 @@ async function downloadCSV() { const selectedFieldMappings: any = { countId: "inventoryCountImportId", countName: "countImportName", - acceptedByUser: "uploadedByUserLogin", + acceptedByUser: "acceptedByUserLoginId", createdDate: "createdDate", lastSubmittedDate: "lastSubmittedDate", closedDate: "closedDate",