|
@@ -1350,7 +1350,7 @@ namespace MECF.Framework.RT.ModuleLibrary.SystemModules
|
|
int portID;
|
|
int portID;
|
|
string jobID;
|
|
string jobID;
|
|
string lotId;
|
|
string lotId;
|
|
- string[] sequence;
|
|
|
|
|
|
+ object[] sequence;
|
|
string[] slotsequence;
|
|
string[] slotsequence;
|
|
LoadPortModuleBase lp;
|
|
LoadPortModuleBase lp;
|
|
switch (command.ToUpper())
|
|
switch (command.ToUpper())
|
|
@@ -1364,11 +1364,11 @@ namespace MECF.Framework.RT.ModuleLibrary.SystemModules
|
|
portID = int.Parse(paras[0].ToString());
|
|
portID = int.Parse(paras[0].ToString());
|
|
jobID = paras[1].ToString();
|
|
jobID = paras[1].ToString();
|
|
lotId = paras[2].ToString();
|
|
lotId = paras[2].ToString();
|
|
- sequence = (string[])paras[3];
|
|
|
|
|
|
+ sequence = (object[])paras[3];
|
|
slotsequence = new string[25];
|
|
slotsequence = new string[25];
|
|
for (int i = 0; i < 25; i++)
|
|
for (int i = 0; i < 25; i++)
|
|
{
|
|
{
|
|
- slotsequence[i] = sequence[i] == "*null*" ? "" : sequence[i];
|
|
|
|
|
|
+ slotsequence[i] = sequence[i].ToString() == "*null*" ? "" : sequence[i].ToString();
|
|
}
|
|
}
|
|
Dictionary<string, object> para = new Dictionary<string, object>();
|
|
Dictionary<string, object> para = new Dictionary<string, object>();
|
|
para.Add("JobId", jobID);
|
|
para.Add("JobId", jobID);
|