[성현모] JsonConvertTool 추가, 서머리 수량 버그수정
This commit is contained in:
@ -1028,7 +1028,7 @@ namespace SystemX.Product.ALIS.UI.View.InfoList
|
||||
$"Y.ModelName, " +
|
||||
//$"Y.Comment AS 'Model-Comment', " +
|
||||
$"X.Comment, " +
|
||||
$"X.Description, " +
|
||||
$"I.Description, " +
|
||||
$"X.UseTLPosition AS 'Test-List Position', " +
|
||||
$"K.LatestStepVersion AS 'Step Version' " +
|
||||
$"FROM PROD_Variant AS X " +
|
||||
@ -1157,7 +1157,7 @@ namespace SystemX.Product.ALIS.UI.View.InfoList
|
||||
$"Y.ModelName, " +
|
||||
//$"Y.Comment AS 'Model-Comment', " +
|
||||
$"X.Comment, " +
|
||||
$"X.Description, " +
|
||||
$"I.Description, " +
|
||||
$"X.UseTLPosition AS 'Test-List Position', " +
|
||||
$"Z.LatestStepVersion AS 'Step Version' " +
|
||||
//$"X.TestListData " +
|
||||
|
||||
@ -208,7 +208,7 @@ namespace SystemX.Product.ALIS.UI.View.InfoList
|
||||
CheckTestListInfo(dtTestList);
|
||||
*/
|
||||
|
||||
DataTable dtTestList = ctrlDB.GetTable($"SELECT X.No, X.ProdNo_P, Y.TestType, Y.Version, Y.ProdCode, Y.FileName, X.Comment, X.Description FROM [PROD_Variant] AS X WITH(NOLOCK) " +
|
||||
DataTable dtTestList = ctrlDB.GetTable($"SELECT X.No, X.ProdNo_P, Y.TestType, Y.Version, Y.ProdCode, Y.FileName, X.Comment, Y.Description FROM [PROD_Variant] AS X WITH(NOLOCK) " +
|
||||
$"INNER JOIN [STOR_TestListFile] AS Y WITH(NOLOCK) ON X.TestListFileNo = Y.No " +
|
||||
$"WHERE X.No = " + lstCopyTestListRelease[0].VariantNo + " ORDER BY No ASC;");
|
||||
|
||||
@ -662,7 +662,7 @@ namespace SystemX.Product.ALIS.UI.View.InfoList
|
||||
CheckTestListInfo(dtTestList);
|
||||
*/
|
||||
|
||||
DataTable dtTestList = ctrlDB.GetTable($"SELECT X.No, X.ProdNo_P, Y.TestType, Y.Version, Y.ProdCode, Y.FileName, X.Comment, X.Description FROM [PROD_Variant] AS X WITH(NOLOCK) " +
|
||||
DataTable dtTestList = ctrlDB.GetTable($"SELECT X.No, X.ProdNo_P, Y.TestType, Y.Version, Y.ProdCode, Y.FileName, X.Comment, Y.Description FROM [PROD_Variant] AS X WITH(NOLOCK) " +
|
||||
$"INNER JOIN [STOR_TestListFile] AS Y WITH(NOLOCK) ON X.TestListFileNo = Y.No " +
|
||||
$"WHERE X.No = " + lstCopyTestListRelease[0].VariantNo + " ORDER BY No ASC;");
|
||||
|
||||
@ -703,7 +703,7 @@ namespace SystemX.Product.ALIS.UI.View.InfoList
|
||||
"WHERE ProdNo_P = '" + textBoxPProdNoInput.Text + "' ";
|
||||
*/
|
||||
|
||||
string strSetQueryText = $"SELECT X.No, X.ProdNo_P, Y.TestType, Y.Version, Y.ProdCode, Y.FileName, X.Comment, X.Description FROM [PROD_Variant] AS X WITH(NOLOCK) " +
|
||||
string strSetQueryText = $"SELECT X.No, X.ProdNo_P, Y.TestType, Y.Version, Y.ProdCode, Y.FileName, X.Comment, Y.Description FROM [PROD_Variant] AS X WITH(NOLOCK) " +
|
||||
$"INNER JOIN [STOR_TestListFile] AS Y WITH(NOLOCK) ON X.TestListFileNo = Y.No " +
|
||||
$"WHERE X.ProdNo_P = '" + textBoxPProdNoInput.Text + "' ";
|
||||
|
||||
|
||||
@ -215,7 +215,7 @@ namespace SystemX.Product.ALIS.UI.View.InfoList
|
||||
|
||||
CheckTestCodeInfo(dtTestCode);
|
||||
|
||||
DataTable dtTestList = ctrlDB.GetTable($"SELECT X.No, X.ProdNo_P, Y.TestType, Y.Version, Y.ProdCode, Y.FileName, X.Comment, X.Description FROM [PROD_Variant] AS X WITH(NOLOCK) " +
|
||||
DataTable dtTestList = ctrlDB.GetTable($"SELECT X.No, X.ProdNo_P, Y.TestType, Y.Version, Y.ProdCode, Y.FileName, X.Comment, Y.Description FROM [PROD_Variant] AS X WITH(NOLOCK) " +
|
||||
$"INNER JOIN [STOR_TestListFile] AS Y WITH(NOLOCK) ON X.TestListFileNo = Y.No " +
|
||||
$"WHERE X.No = " + getSelTestListRelInfo.VariantNo + " ORDER BY No ASC;");
|
||||
|
||||
@ -396,7 +396,7 @@ namespace SystemX.Product.ALIS.UI.View.InfoList
|
||||
textBoxDispTestListComment.Text = "";
|
||||
textBoxDispTestListDescription.Text = "";
|
||||
|
||||
string strSetQueryText = $"SELECT X.No, X.ProdNo_P, Y.TestType, Y.Version, Y.ProdCode, Y.FileName, X.Comment, X.Description FROM [PROD_Variant] AS X WITH(NOLOCK) " +
|
||||
string strSetQueryText = $"SELECT X.No, X.ProdNo_P, Y.TestType, Y.Version, Y.ProdCode, Y.FileName, X.Comment, Y.Description FROM [PROD_Variant] AS X WITH(NOLOCK) " +
|
||||
$"INNER JOIN [STOR_TestListFile] AS Y WITH(NOLOCK) ON X.TestListFileNo = Y.No " +
|
||||
$"WHERE X.ProdNo_P = '" + textBoxPProdNoInput.Text + "' ";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user