[성현모] JsonConvertTool 추가, 서머리 수량 버그수정
This commit is contained in:
@ -250,6 +250,12 @@ namespace SystemX.Net.XAdaptor.PC
|
||||
case BASE_PROTOCOL.PROTOCOL_CODE.FILE_TRANSFER:
|
||||
{
|
||||
byte[] ucFileData = objData as byte[];
|
||||
|
||||
/*
|
||||
string strGetTestListCntID = getHeader.objVarParam1[0].Data;
|
||||
|
||||
QueryTestListProcess(ucFileData, strGetTestListCntID);
|
||||
*/
|
||||
}
|
||||
break;
|
||||
case BASE_PROTOCOL.PROTOCOL_CODE.TRANSFER_RESULT:
|
||||
@ -317,9 +323,15 @@ namespace SystemX.Net.XAdaptor.PC
|
||||
if (getHeader.usPalletIndex == ushort.MaxValue)
|
||||
{
|
||||
string strGetTestListCntID = getHeader.objVarParam1[0].Data;
|
||||
string strGetCallType = getHeader.objVarParam2[0].Data;
|
||||
|
||||
QueryTestListProcess(ucGetDatas, strGetTestListCntID);
|
||||
|
||||
if(strGetCallType.Contains("DOWNLOAD_TL"))
|
||||
QueryTestListProcess(ucGetDatas, strGetTestListCntID);
|
||||
else if (strGetCallType.Contains("CHECK_TL"))
|
||||
QueryTestListCheckProcess(ucGetDatas);
|
||||
else
|
||||
QueryTestListProcess(ucGetDatas, strGetTestListCntID);
|
||||
//
|
||||
//Task<int> tkProcTestlist = new Task<int>(new Func<int>(() => QueryTestListProcess(ucGetDatas).Result));
|
||||
//tkProcTestlist.Start();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user