[성현모] TRA 버그 수정, Json Convert Tool 추가
This commit is contained in:
@ -49,7 +49,7 @@ namespace SystemX.Product.TRA.DataManager
|
||||
}
|
||||
}
|
||||
|
||||
public DataTable SearchTestResult(DateTime dtTest)
|
||||
public DataTable SearchTestResult(DateTime dtTest, ulong nAccNo)
|
||||
{
|
||||
if (TrendSelectView == eSelectDataView.DataDocumentViewC1)
|
||||
{
|
||||
@ -81,9 +81,11 @@ namespace SystemX.Product.TRA.DataManager
|
||||
strQuery += $"*";
|
||||
strQuery += " ";
|
||||
strQuery += $"from {DMCommon.ResultLogTable} ";
|
||||
strQuery += $"WITH(NOLOCK) ";
|
||||
strQuery += $"order by ";
|
||||
strQuery += $"[No]";
|
||||
strQuery += $"WITH(NOLOCK) ";
|
||||
strQuery += $"where [No] = {nAccNo}";
|
||||
strQuery += " ";
|
||||
//strQuery += $"order by ";
|
||||
//strQuery += $"[No]";
|
||||
strQuery += ";";
|
||||
|
||||
if (DatabaseConnControl.ScanLongTermLog) SQLCmd = new SqlCommand(strQuery, LongTermDBConn);
|
||||
|
||||
Reference in New Issue
Block a user