Browse Source

fix some miss function in SE/DE Recipe && Improve VenusDispatcher

zhouhr 5 months ago
parent
commit
b6ab013e1b

+ 2 - 2
Venus/Venus_MainPages/Unity/WaferAssociationInfo.cs

@@ -77,14 +77,14 @@ namespace Venus_MainPages.Unity
             get { return string.IsNullOrEmpty(_JobStatus); }
         }
 
-        private string _PreCleanRecipeName="";
+        private string _PreCleanRecipeName= string.Empty;
         public string PreCleanRecipeName
         {
             get { return _PreCleanRecipeName; }
             set { _PreCleanRecipeName = value; RaisePropertyChanged("PreCleanRecipeName"); }
         }
 
-        private string _PostCleanRecipeName="";
+        private string _PostCleanRecipeName= string.Empty;
         public string PostCleanRecipeName
         {
             get { return _PostCleanRecipeName; }

+ 1 - 1
Venus/Venus_MainPages/ViewModels/RecipeViewModel.cs

@@ -754,7 +754,7 @@ namespace Venus_MainPages.ViewModels
                 textBlock.FontSize = 16;
                 textBlock.Margin = new Thickness(0, 20, 0, 0);
                 textBlock.Width = 200;
-                if (currentChamber != JetChamber.VenusDE && propertyInfo.Name == "WallTemperature")
+                if ((currentChamber != JetChamber.VenusDE && currentChamber != JetChamber.VenusSE) && propertyInfo.Name == "WallTemperature")
                 {
                     continue;
                 }

+ 2 - 2
Venus/Venus_MainPages/ViewModels/VenusDeOperationOverViewModel.cs

@@ -998,8 +998,8 @@ namespace Venus_MainPages.ViewModels
                     info.LotId = "";
                     info.JobID = "";
                     info.JobStatus = "";
-                    info.PreCleanRecipeName = "";
-                    info.PostCleanRecipeName = "";
+                    //info.PreCleanRecipeName = "";
+                    //info.PostCleanRecipeName = "";
                     AssociateSequence(info, false);
                 }
             }

+ 2 - 2
Venus/Venus_MainPages/Views/VenusDeOperationOverView.xaml

@@ -670,12 +670,12 @@
                 </TabItem>
                 <TabItem Header="LP1" Style="{StaticResource StyleTabControl}">
                     <Viewbox Width="Auto" VerticalAlignment="Top" HorizontalAlignment="Center">
-                        <local:WaferAssociationUnit WAInfo="{Binding VCEAwaferAssociation}" ButtonIsEnable="{Binding ButtonIsEnableVCEA}"/>
+                        <local:WaferAssociationUnit WAInfo="{Binding VCEAwaferAssociation,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}" ButtonIsEnable="{Binding ButtonIsEnableVCEA}"/>
                     </Viewbox>
                 </TabItem>
                 <TabItem Header="LP2" Style="{StaticResource StyleTabControl}">
                     <Viewbox Width="Auto" VerticalAlignment="Top" HorizontalAlignment="Center">
-                        <local:WaferAssociationUnit WAInfo="{Binding VCEBwaferAssociation}" ButtonIsEnable="{Binding ButtonIsEnableVCEB}"/>
+                        <local:WaferAssociationUnit WAInfo="{Binding VCEBwaferAssociation,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}" ButtonIsEnable="{Binding ButtonIsEnableVCEB}"/>
                     </Viewbox>
                 </TabItem>
             </TabControl>

+ 2 - 0
Venus/Venus_RT/Modules/Schedulers/SchedulerModule.cs

@@ -101,6 +101,7 @@ namespace Venus_RT.Scheduler
         public virtual bool IsAtm { get { return true; } }
         public virtual bool IsVac { get { return false; } }
         public virtual bool IsInclude { get { return true; } }
+        public virtual Guid? LastPMWaferID { get; set; }
 
         public int InTransferSlot
         {
@@ -130,6 +131,7 @@ namespace Venus_RT.Scheduler
             _module = module;
             WaferArriveTicks = new Dictionary<int, DateTime>();
             WaferArriveTicks[3] = WaferArriveTicks[2] = WaferArriveTicks[1] = WaferArriveTicks[0] = DateTime.Now;
+            LastPMWaferID = null;
         }
         protected void LogTaskStart(TaskType cmd, string message)
         {

File diff suppressed because it is too large
+ 874 - 333
Venus/Venus_RT/Modules/VenusDispatcher.cs