diff --git a/NKC_WF/WebUserControls/cmp_MU_carts.ascx b/NKC_WF/WebUserControls/cmp_MU_carts.ascx
index 207474c..1326920 100644
--- a/NKC_WF/WebUserControls/cmp_MU_carts.ascx
+++ b/NKC_WF/WebUserControls/cmp_MU_carts.ascx
@@ -56,6 +56,7 @@
+
diff --git a/NKC_WF/WebUserControls/cmp_MU_carts.ascx.cs b/NKC_WF/WebUserControls/cmp_MU_carts.ascx.cs
index 1a5fffa..373fa71 100644
--- a/NKC_WF/WebUserControls/cmp_MU_carts.ascx.cs
+++ b/NKC_WF/WebUserControls/cmp_MU_carts.ascx.cs
@@ -101,6 +101,21 @@ namespace NKC_WF.WebUserControls
hfPrintQueue.Value = value;
}
}
+
+ ///
+ /// Queue selezionata x SpecialParts
+ ///
+ public string currQueueSP
+ {
+ get
+ {
+ return hfPrintQueueSP.Value;
+ }
+ set
+ {
+ hfPrintQueueSP.Value = value;
+ }
+ }
///
/// Macchina selezionata
///
@@ -114,6 +129,7 @@ namespace NKC_WF.WebUserControls
{
hfMachineSel.Value = value;
currQueue = DLMan.getPrinter($"{value}-UNLOAD");
+ currQueueSP = DLMan.getPrinter($"{value}-SPECIALPART");
}
}
protected void Page_Load(object sender, EventArgs e)
@@ -121,6 +137,7 @@ namespace NKC_WF.WebUserControls
if (!Page.IsPostBack)
{
currQueue = DLMan.getPrinter($"{MachineSel}-UNLOAD");
+ currQueueSP = DLMan.getPrinter($"{MachineSel}-SPECIALPART");
}
}
public void doUpdate()
@@ -173,7 +190,7 @@ namespace NKC_WF.WebUserControls
{
lgInfo($"checkSpecialPrint: IS SPECIAL!!!");
// invio SINGOLO record in stampa (che poi stamperà + pagine, 1 x item)
- DLMan.stampaDoc($"{cartId}", currQueue, tipoDocumento.docCartSpecialPart, Request.UserHostName);
+ DLMan.stampaDoc($"{cartId}", currQueueSP, tipoDocumento.docCartSpecialPart, Request.UserHostName);
}
else
{
diff --git a/NKC_WF/WebUserControls/cmp_MU_carts.ascx.designer.cs b/NKC_WF/WebUserControls/cmp_MU_carts.ascx.designer.cs
index f4b6786..200653e 100644
--- a/NKC_WF/WebUserControls/cmp_MU_carts.ascx.designer.cs
+++ b/NKC_WF/WebUserControls/cmp_MU_carts.ascx.designer.cs
@@ -77,6 +77,15 @@ namespace NKC_WF.WebUserControls
///
protected global::System.Web.UI.WebControls.HiddenField hfPrintQueue;
+ ///
+ /// hfPrintQueueSP control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.HiddenField hfPrintQueueSP;
+
///
/// hfMachineSel control.
///