Fix filtraggio + fix trascriziones tati

This commit is contained in:
Samuele E. Locatelli
2019-08-21 19:12:21 +02:00
parent 1264b8d7ac
commit 149b78f44d
5 changed files with 66 additions and 17 deletions
@@ -47,14 +47,7 @@ namespace NKC_WF.WebUserControls
/// <returns></returns>
public string BStatus(object _status)
{
string answ = "nd";
try
{
var bStatus = Enum.Parse(typeof(ComLib.BatchStatus), _status.ToString());
answ = bStatus.ToString();
}
catch
{ }
string answ = ComLib.BatchStatusDescr(_status);
return answ;
}
}