[성현모] TRA Split 문자열 추가

This commit is contained in:
SHM
2024-07-26 15:40:44 +09:00
parent d9be94cc6b
commit df0551dd2c

View File

@ -303,9 +303,9 @@ namespace SystemX.Product.TRA.DataManager
try try
{ {
string requId = testReqID?.First(); string requId = testReqID?.First();
if (string.IsNullOrEmpty(requId) == false && requId.Contains(";") == true) if (string.IsNullOrEmpty(requId) == false && requId.Contains(";") == true || requId.Contains("@") == true)
{ {
start = Convert.ToDateTime(requId.Split(';')[0]); start = Convert.ToDateTime(requId.Split(';','@')[0]);
} }
} }
catch (Exception e) catch (Exception e)