1.修改JobStart事件

This commit is contained in:
HCL 2024-07-23 16:25:52 +08:00
parent 1660e68d0b
commit c9a2343c3d
1 changed files with 4 additions and 1 deletions

View File

@ -422,7 +422,10 @@ namespace SicRT.Modules
cj.SetState(EnumControlJobState.Executing);
GemManager.Instance.Equipment?.TriggerEvent("JobStarted", new string[] { "LotID" }, new object[] { cj.LotName });
string squenceID = cj.LotWafers != null ? cj.LotWafers[0].PPID : string.Empty;
//补全路径
squenceID = $"Sequence\\{squenceID}.seq";
GemManager.Instance.Equipment?.TriggerEvent("JobStart", new string[] { "LotID", "SequenceID" }, new object[] { cj.LotName, squenceID });
}
}