diff --git a/GMW/WebUserControls/mod_post_B48.ascx.cs b/GMW/WebUserControls/mod_post_B48.ascx.cs index 39847871..e4565595 100644 --- a/GMW/WebUserControls/mod_post_B48.ascx.cs +++ b/GMW/WebUserControls/mod_post_B48.ascx.cs @@ -589,13 +589,20 @@ namespace GMW.WebUserControls Postazione.warningText = traduci("ERR-DTX-012"); Postazione.CssClass = cssErr; } - else if (!isFree) + else if (!isFree && !chkDtxMode.Checked) { // non accetto Dtx e mostro errore Postazione.messaggiText = barcodeIn; Postazione.warningText = traduci("ERR-DTX-017"); Postazione.CssClass = cssErr; } + else if (isFree && chkDtxMode.Checked) + { + // non accetto Dtx e mostro errore + Postazione.messaggiText = barcodeIn; + Postazione.warningText = traduci("ERR-DTX-018"); + Postazione.CssClass = cssErr; + } else // PROCEDO!!! { diff --git a/GMW/bin/GMW.dll b/GMW/bin/GMW.dll index a9361d69..b22d49ce 100644 Binary files a/GMW/bin/GMW.dll and b/GMW/bin/GMW.dll differ