From 210d3dd5fc16b538002afd77ba4104a8f60390de Mon Sep 17 00:00:00 2001 From: amansinghbais Date: Mon, 23 Dec 2024 16:30:59 +0530 Subject: [PATCH] Fixed: issue in updating status of matching in the list (#528) --- src/views/HardCountDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/HardCountDetail.vue b/src/views/HardCountDetail.vue index 121680fa..48b5e246 100644 --- a/src/views/HardCountDetail.vue +++ b/src/views/HardCountDetail.vue @@ -478,8 +478,8 @@ async function updateCurrentItemInList(importItemSeqId: any, product: any, scann } else { item["isMatchNotFound"] = true } + item["isMatching"] = false; if(prevItem && Object.keys(prevItem)?.length && !hasErrorSavingCount) delete item["scannedCount"] - updatedProduct["isMatching"] = false; } })