[성현모] JsonConvertTool 추가, 서머리 수량 버그수정
This commit is contained in:
@ -353,7 +353,7 @@ namespace SystemX.Net.XAdaptor.PC
|
||||
return bResult;
|
||||
}
|
||||
|
||||
public bool QueryTestList(uint nStationID, string strProdNo_C,
|
||||
private bool QueryTestList(uint nStationID, string strProdNo_C,
|
||||
string strTestType,
|
||||
string strTestCode,
|
||||
string strTestListVersion,
|
||||
@ -685,8 +685,14 @@ QUERY_TESTLIST:
|
||||
//
|
||||
eFileSendRecvResult sendrecvResult = eFileSendRecvResult.None;
|
||||
|
||||
string strSetBackupFilePos = strFilePos;
|
||||
string strSetBackupFileName = Path.GetFileName(strFilePos);
|
||||
|
||||
byte[] ucSetBackupFileData = null;
|
||||
|
||||
//TestListCntID
|
||||
string strGetCurrentTestListID = (mgrPRODTestList as TProdTestListInfo).GetTestListCntID();
|
||||
//(mgrPRODTestList as TProdTestListInfo).GetTestListCntID();
|
||||
string strGetCurrentTestListID = CurrentTestList().GetTestListCntID();
|
||||
|
||||
string strSetBackupInfo = targetStationName + ";" +
|
||||
targetTestListNo + ";" +
|
||||
@ -698,11 +704,6 @@ QUERY_TESTLIST:
|
||||
targetProdCode + ";" +
|
||||
strGetCurrentTestListID;
|
||||
|
||||
string strSetBackupFilePos = strFilePos;
|
||||
string strSetBackupFileName = Path.GetFileName(strFilePos);
|
||||
|
||||
byte[] ucSetBackupFileData = null;
|
||||
|
||||
//File Access Check
|
||||
Stopwatch stWaitSendTime = new Stopwatch();
|
||||
stWaitSendTime.Start();
|
||||
@ -809,6 +810,20 @@ QUERY_TESTLIST:
|
||||
}
|
||||
}
|
||||
|
||||
//TestListCntID
|
||||
//(mgrPRODTestList as TProdTestListInfo).GetTestListCntID();
|
||||
strGetCurrentTestListID = CurrentTestList().GetTestListCntID();
|
||||
|
||||
strSetBackupInfo = targetStationName + ";" +
|
||||
targetTestListNo + ";" +
|
||||
targetProcNo_P + ";" +
|
||||
targetProcNo_C + ";" +
|
||||
targetTestType + ";" +
|
||||
targetTestCode + ";" +
|
||||
targetVersion + ";" +
|
||||
targetProdCode + ";" +
|
||||
strGetCurrentTestListID;
|
||||
|
||||
thisConnInfo.OnStreamTime();
|
||||
|
||||
if (sendrecvResult == eFileSendRecvResult.None)
|
||||
@ -1102,7 +1117,7 @@ QUERY_TESTLIST:
|
||||
return sendrecvResult;
|
||||
}
|
||||
|
||||
public eFileSendRecvResult SendCustomFile(string strFilePos, bool bResultWait = false, ushort usPalletIndex = 0)
|
||||
private eFileSendRecvResult SendCustomFile(string strFilePos, bool bResultWait = false, ushort usPalletIndex = 0)
|
||||
{
|
||||
if (thisConnInfo.ConnectStreamState == false)
|
||||
return eFileSendRecvResult.StreamSocketNoConnect;
|
||||
|
||||
Reference in New Issue
Block a user