ok in caso di gestione "tutto senza problemi" per un batch

This commit is contained in:
Samuele E. Locatelli
2020-07-13 17:14:27 +02:00
parent 2e54ed3af7
commit ad90f20997
@@ -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;
}
}
}