fix editing note
This commit is contained in:
Samuele E. Locatelli
2015-05-26 18:46:53 +02:00
parent 3b4a2cd1c0
commit c37025213d
4 changed files with 12 additions and 0 deletions
+6
View File
@@ -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"] = "-";
}
}
}
}
+6
View File
@@ -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"] = "-";
}
}
/// <summary>
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.