Browse Source

Fixed the duplicated wafer bug.

sangwq 1 year ago
parent
commit
36473578f9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Venus/Framework/Common/SubstrateTrackings/WaferManager.cs

+ 1 - 1
Venus/Framework/Common/SubstrateTrackings/WaferManager.cs

@@ -496,7 +496,7 @@ namespace MECF.Framework.Common.SubstrateTrackings
             string waferOrigin = _locationWafers[source][sourceSlot].WaferOrigin;
             _locationWafers[source][sourceSlot].IsDuplicated = true;
 
-            WaferInfo wafer = CopyWaferInfo(source, sourceSlot, _locationWafers[destination][destSlot]);
+            WaferInfo wafer = CopyWaferInfo(destination, destSlot, _locationWafers[source][sourceSlot]);
             _duplicatedWafers.Add(new DulicatedWaferInfo(wafer.InnerId, source, sourceSlot, destination, destSlot));
 
             LOG.Write(eEvent.EV_WAFER_DUPLICATED, ModuleName.System, waferOrigin, source.ToString(), (source + 1).ToString(), destination.ToString(), (destSlot + 1).ToString());