|
@@ -747,7 +747,7 @@ namespace Venus_RT.Modules
|
|
|
private RState _cycleState = RState.Init;
|
|
|
public RState CycleState => _cycleState;
|
|
|
private Dictionary<string, ControlJobInfo> _loadportControlJobDic = new Dictionary<string, ControlJobInfo>();
|
|
|
-
|
|
|
+ public List<string> InUseRecipes = new List<string>();
|
|
|
#region public interface
|
|
|
public SystemDispatcher()
|
|
|
{
|
|
@@ -770,7 +770,7 @@ namespace Venus_RT.Modules
|
|
|
|
|
|
DATA.Subscribe("Scheduler.PjIdList", () => Array.ConvertAll(_lstProcessJobs.ToArray(), x => x.InnerId.ToString()).ToList());
|
|
|
DATA.Subscribe("Scheduler.PjNameList", () => Array.ConvertAll(_lstProcessJobs.ToArray(), x => x.LotName.ToString()).ToList());
|
|
|
-
|
|
|
+ DATA.Subscribe("Scheduler.InUsingRecipe", () => InUseRecipes);
|
|
|
for (int i = 1; i <= 3; i++)
|
|
|
{
|
|
|
_loadportControlJobDic[$"LP{i}"] = null;
|
|
@@ -1017,7 +1017,7 @@ namespace Venus_RT.Modules
|
|
|
if (cj.State == EnumControlJobState.Executing || cj.State == EnumControlJobState.Paused)
|
|
|
return false;
|
|
|
}
|
|
|
-
|
|
|
+ InUseRecipes.Clear();
|
|
|
return true;
|
|
|
}
|
|
|
|
|
@@ -1189,6 +1189,7 @@ namespace Venus_RT.Modules
|
|
|
{
|
|
|
return false;
|
|
|
}
|
|
|
+ GetAllJobRecipe(cj, item.Sequence);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1246,6 +1247,7 @@ namespace Venus_RT.Modules
|
|
|
_curEfemAction.Clear();
|
|
|
_lstControlJobs.Clear();
|
|
|
_lstProcessJobs.Clear();
|
|
|
+ InUseRecipes.Clear();
|
|
|
_cycleState = RState.End;
|
|
|
}
|
|
|
|
|
@@ -4283,6 +4285,52 @@ namespace Venus_RT.Modules
|
|
|
_LLInOutPath = SequenceLLInOutPath.DInDOut;
|
|
|
}
|
|
|
|
|
|
+ private bool GetAllJobRecipe(ControlJobInfo cj,SequenceInfo seq)
|
|
|
+ {
|
|
|
+ for (int i = 0; i < seq.Steps.Count; i++)
|
|
|
+ {
|
|
|
+ SequenceStepInfo stepInfo = seq.Steps[i];
|
|
|
+ foreach (var module in stepInfo.StepModules)
|
|
|
+ {
|
|
|
+ if (ModuleHelper.IsPm(module))
|
|
|
+ {
|
|
|
+ string attr = $"{module}Recipe";
|
|
|
+ if (stepInfo.StepParameter.ContainsKey(attr)
|
|
|
+ && !string.IsNullOrWhiteSpace((string)stepInfo.StepParameter[attr]))
|
|
|
+ {
|
|
|
+ var recipeName = (string)stepInfo.StepParameter[attr];
|
|
|
+ var recipeContent =
|
|
|
+ RecipeFileManager.Instance.LoadRecipe($"{module}", recipeName, false, "Process");
|
|
|
+ var recipe = Recipe.Load(recipeContent);
|
|
|
+ if (recipe.Header.ChuckRecipe != null && recipe.Header.ChuckRecipe != "")
|
|
|
+ {
|
|
|
+ InUseRecipes.Add($"{module}.ChuckRecipe.{recipe.Header.ChuckRecipe}");
|
|
|
+ }
|
|
|
+ if (recipe.Header.DechuckRecipe != null && recipe.Header.DechuckRecipe != "")
|
|
|
+ {
|
|
|
+ InUseRecipes.Add($"{module}.DechuckRecipe.{recipe.Header.DechuckRecipe}");
|
|
|
+ }
|
|
|
+ InUseRecipes.Add($"{module}.Process.{recipeName}");
|
|
|
+ if (cj.PreJobClean != "")
|
|
|
+ {
|
|
|
+ InUseRecipes.Add($"{module}.Clean.{cj.PreJobClean}");
|
|
|
+ }
|
|
|
+ if (cj.PostJobClean != "")
|
|
|
+ {
|
|
|
+ InUseRecipes.Add($"{module}.Clean.{cj.PostJobClean}");
|
|
|
+ }
|
|
|
+ if (stepInfo.StepParameter["WTWClean"].ToString() != "")
|
|
|
+ {
|
|
|
+ InUseRecipes.Add($"{module}.Clean.{stepInfo.StepParameter["WTWClean"]}");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
#endregion
|
|
|
}
|
|
|
}
|