Commit e747d3a2 张东亮

入料机构执行一定次数,只回原入料机构的轴,AB料口不动

1 个父辈 4dba1553
...@@ -133,7 +133,7 @@ namespace OnlineStore.DeviceLibrary ...@@ -133,7 +133,7 @@ namespace OnlineStore.DeviceLibrary
public bool singleOut = false; public bool singleOut = false;
public string ToStr() public string ToStr()
{ {
return " [" + barcode + "] [" + PosId + "] [" + PlateW + "x" + PlateH + "]"+ $",hSerial[{hSerial}]" + ",urgentReel [" + urgentReel return " [" + barcode + "] [" + PosId + "] [" + PlateW + "x" + PlateH + "]"+ $",hSerial[{hSerial}]" +$",isNg[{IsNG}],NgMsg[{NgMsg}]"+ ",urgentReel [" + urgentReel
+ "],cutReel [" + cutReel + "],smallReel [" + smallReel + "],rfid [" + rfid + "],rfidLoc [" + rfidLoc + "],singleOut[" + singleOut + "]"; + "],cutReel [" + cutReel + "],smallReel [" + smallReel + "],rfid [" + rfid + "],rfidLoc [" + rfidLoc + "],singleOut[" + singleOut + "]";
} }
......
...@@ -387,6 +387,7 @@ namespace OnlineStore.DeviceLibrary ...@@ -387,6 +387,7 @@ namespace OnlineStore.DeviceLibrary
BufferDataManager.AInStoreInfo = MoveInfo.MoveParam.PosInfo; BufferDataManager.AInStoreInfo = MoveInfo.MoveParam.PosInfo;
MoveInfo.EndMove(); MoveInfo.EndMove();
runStatus = RunStatus.Runing; runStatus = RunStatus.Runing;
InoutEndEvent();
} }
#endregion #endregion
...@@ -481,6 +482,7 @@ namespace OnlineStore.DeviceLibrary ...@@ -481,6 +482,7 @@ namespace OnlineStore.DeviceLibrary
BufferDataManager.BInStoreInfo = MoveInfo.MoveParam.PosInfo; BufferDataManager.BInStoreInfo = MoveInfo.MoveParam.PosInfo;
MoveInfo.EndMove(); MoveInfo.EndMove();
runStatus = RunStatus.Runing; runStatus = RunStatus.Runing;
InoutEndEvent();
} }
#endregion #endregion
...@@ -538,6 +540,7 @@ namespace OnlineStore.DeviceLibrary ...@@ -538,6 +540,7 @@ namespace OnlineStore.DeviceLibrary
MoveLog($" 入料->NG箱放料结束,耗时【{FormUtil.GetSpanStr(span)}】"); MoveLog($" 入料->NG箱放料结束,耗时【{FormUtil.GetSpanStr(span)}】");
MoveInfo.EndMove(); MoveInfo.EndMove();
runStatus = RunStatus.Runing; runStatus = RunStatus.Runing;
InoutEndEvent();
} }
#endregion #endregion
...@@ -1190,6 +1193,7 @@ namespace OnlineStore.DeviceLibrary ...@@ -1190,6 +1193,7 @@ namespace OnlineStore.DeviceLibrary
runStatus = RunStatus.Runing; runStatus = RunStatus.Runing;
TimeSpan span = DateTime.Now - startOutTime; TimeSpan span = DateTime.Now - startOutTime;
MoveLog($"出库->料串 {MoveInfo.SLog}: 放料完成,耗时【{FormUtil.GetSpanStr(span)}】"); MoveLog($"出库->料串 {MoveInfo.SLog}: 放料完成,耗时【{FormUtil.GetSpanStr(span)}】");
InoutEndEvent();
} }
#endregion #endregion
...@@ -1248,6 +1252,7 @@ namespace OnlineStore.DeviceLibrary ...@@ -1248,6 +1252,7 @@ namespace OnlineStore.DeviceLibrary
MoveLog($" 出料->NG箱放料结束,耗时【{FormUtil.GetSpanStr(span)}】"); MoveLog($" 出料->NG箱放料结束,耗时【{FormUtil.GetSpanStr(span)}】");
MoveInfo.EndMove(); MoveInfo.EndMove();
runStatus = RunStatus.Runing; runStatus = RunStatus.Runing;
InoutEndEvent();
} }
#endregion #endregion
...@@ -1307,6 +1312,7 @@ namespace OnlineStore.DeviceLibrary ...@@ -1307,6 +1312,7 @@ namespace OnlineStore.DeviceLibrary
MoveLog($" 出料->紧急箱放料结束,耗时【{FormUtil.GetSpanStr(span)}】"); MoveLog($" 出料->紧急箱放料结束,耗时【{FormUtil.GetSpanStr(span)}】");
MoveInfo.EndMove(); MoveInfo.EndMove();
runStatus = RunStatus.Runing; runStatus = RunStatus.Runing;
InoutEndEvent();
} }
#endregion #endregion
} }
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!