diff --git a/C2P/WebUserControls/mod_Q_Header.ascx.cs b/C2P/WebUserControls/mod_Q_Header.ascx.cs index bfb04a7..e33001a 100644 --- a/C2P/WebUserControls/mod_Q_Header.ascx.cs +++ b/C2P/WebUserControls/mod_Q_Header.ascx.cs @@ -225,6 +225,12 @@ namespace C2P.WebUserControls { e.InputParameters["KoReason"] = "NA"; } + // 2015.05.26 check note NON empty... + // se note vuoto metto "-" + if (e.InputParameters["Note"] == null || e.InputParameters["Note"].ToString()=="") + { + e.InputParameters["Note"] = "-"; + } } } } \ No newline at end of file diff --git a/C2P/WebUserControls/mod_S_Header.ascx.cs b/C2P/WebUserControls/mod_S_Header.ascx.cs index ecc5269..5448a0b 100644 --- a/C2P/WebUserControls/mod_S_Header.ascx.cs +++ b/C2P/WebUserControls/mod_S_Header.ascx.cs @@ -223,6 +223,12 @@ namespace C2P.WebUserControls { e.InputParameters["KoReason"] = "NA"; } + // 2015.05.26 check note NON empty... + // se note vuoto metto "-" + if (e.InputParameters["Note"] == null || e.InputParameters["Note"].ToString() == "") + { + e.InputParameters["Note"] = "-"; + } } /// diff --git a/C2P/bin/C2P.dll b/C2P/bin/C2P.dll index d77e819..edf1f60 100644 Binary files a/C2P/bin/C2P.dll and b/C2P/bin/C2P.dll differ diff --git a/C2P/bin/NLog.dll b/C2P/bin/NLog.dll index e6fe774..5a2f145 100644 Binary files a/C2P/bin/NLog.dll and b/C2P/bin/NLog.dll differ