修改AutoRuning问题

This commit is contained in:
HCL 2026-08-19 13:52:08 +08:00
parent 1ab1dc967c
commit aca0db5b74
4 changed files with 4 additions and 4 deletions

View File

@ -1151,7 +1151,7 @@ namespace SicModules.PMs
} }
else if (mGroupName == MfcGroupName.M1toM17) else if (mGroupName == MfcGroupName.M1toM17)
{ {
lst = new List<int>() { 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 16, 17 }; lst = new List<int>() { 1, 3, 4, 6, 7, 8, 10, 11, 12, 13, 14, 16, 17 };
} }
else if (mGroupName == MfcGroupName.M18toM40No303439) else if (mGroupName == MfcGroupName.M18toM40No303439)
{ {

View File

@ -1103,7 +1103,7 @@ namespace SicRT.Modules
{ {
//条件满足状态由AutoRunning切换到AutoIdle状态 //条件满足状态由AutoRunning切换到AutoIdle状态
if (_load.IsAvailable && _tmRobot.IsAvailable && _tmRobot.NoWafer(0) && _tmRobot.NoTray(0) && if (_load.IsAvailable && _tmRobot.IsAvailable && _tmRobot.NoWafer(0) && _tmRobot.NoTray(0) &&
_buffer.NoWafer(0) && _buffer.NoTray(0) && _buffer.NoWafer(1) && _buffer.NoTray(1) && _buffer.NoWafer(2) && _buffer.NoTray(2) && _buffer.NoWafer(0) && _buffer.NoTray(0) &&
_pm1.NoWafer(0) && _pm1.NoTray(0) && _pm2.NoWafer(0) && _pm2.NoTray(0) && !_controlJobList.Exists(c => c.State == EnumControlJobState.Executing)) _pm1.NoWafer(0) && _pm1.NoTray(0) && _pm2.NoWafer(0) && _pm2.NoTray(0) && !_controlJobList.Exists(c => c.State == EnumControlJobState.Executing))
{ {
return true; return true;

View File

@ -138,7 +138,7 @@
Canvas.Top="503" Canvas.Top="503"
Width="83" Width="83"
Height="8" Height="8"
IsDoorOpen="{Binding IsLLDoorOpen}" IsDoorOpen="{Binding IsLoadLeftSlitValveOpen}"
RenderTransformOrigin="0.5,0.5"> RenderTransformOrigin="0.5,0.5">
<unitControls:Door.RenderTransform> <unitControls:Door.RenderTransform>
<TransformGroup> <TransformGroup>

View File

@ -286,7 +286,7 @@ namespace SicUI.Client.Models.Platform.TM
//private List<string> _modules = new List<string>() { "PM1", "PM2", "LoadLock", "UnLoad", "Buffer.01", "Buffer.02", "Buffer.03" }; //private List<string> _modules = new List<string>() { "PM1", "PM2", "LoadLock", "UnLoad", "Buffer.01", "Buffer.02", "Buffer.03" };
private List<string> _modules = new List<string>() { "PM1", "PM2", "LoadLock", "Buffer.01", "Buffer.02", "Buffer.03" }; private List<string> _modules = new List<string>() { "PM1", "PM2", "LoadLock", "Buffer.01" };
public List<string> Modules public List<string> Modules
{ {
get { return _modules; } get { return _modules; }