From ad90f209971a9eba809124de1fc4f8fcb3bf7cd7 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Mon, 13 Jul 2020 17:14:27 +0200 Subject: [PATCH] ok in caso di gestione "tutto senza problemi" per un batch --- NKC_WF/WebUserControls/cmp_stackLoading.ascx.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NKC_WF/WebUserControls/cmp_stackLoading.ascx.cs b/NKC_WF/WebUserControls/cmp_stackLoading.ascx.cs index 18bed2a..11545d7 100644 --- a/NKC_WF/WebUserControls/cmp_stackLoading.ascx.cs +++ b/NKC_WF/WebUserControls/cmp_stackLoading.ascx.cs @@ -104,6 +104,7 @@ namespace NKC_WF.WebUserControls if (tabStack.Count == 0) { cmp_barcode.showOutput("badge badge-danger", $"BUNK NOT FOUND: {decoData.description}"); + doRaiseEv = true; } else { @@ -111,6 +112,7 @@ namespace NKC_WF.WebUserControls if (currentBunkAlreadyWorking(decoData.codeInt)) { cmp_barcode.showOutput("badge badge-success", $"BUNK in processing, {decoData.rawData}"); + doRaiseEv = true; } else { @@ -147,11 +149,13 @@ namespace NKC_WF.WebUserControls else { cmp_barcode.showOutput("badge badge-danger", $"PREV BUNK NOT COMPLETED, {decoData.rawData}"); + doRaiseEv = true; } } else { cmp_barcode.showOutput("badge badge-danger", $"WRONG BUNK, {decoData.rawData}"); + doRaiseEv = true; } } }