|
@@ -1,4 +1,5 @@
|
|
|
-using Aitex.Core.Common.DeviceData;
|
|
|
+using Aitex.Core.Account;
|
|
|
+using Aitex.Core.Common.DeviceData;
|
|
|
using Aitex.Core.RT.IOCore;
|
|
|
using Aitex.Core.RT.Log;
|
|
|
using Aitex.Core.UI.View.Common;
|
|
@@ -72,7 +73,6 @@ namespace Venus_MainPages.ViewModels
|
|
|
private EPDType currentEPDType=EPDType.None;
|
|
|
private JetChamber currentChamber;
|
|
|
private bool isInstalledEPD;
|
|
|
- private TextBox cycleNumberTextBox;
|
|
|
#endregion
|
|
|
|
|
|
#region 属性
|
|
@@ -120,15 +120,10 @@ namespace Venus_MainPages.ViewModels
|
|
|
private DelegateCommand _DeleteStepCommand;
|
|
|
public DelegateCommand DeleteStepCommand =>
|
|
|
_DeleteStepCommand ?? (_DeleteStepCommand = new DelegateCommand(OnDeleteStep));
|
|
|
+ TreeViewFileItem selectedItem;
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
- #region 构造函数
|
|
|
- public RecipeViewModel()
|
|
|
- {
|
|
|
-
|
|
|
- }
|
|
|
- #endregion
|
|
|
|
|
|
#region 命令方法
|
|
|
|
|
@@ -147,7 +142,6 @@ namespace Venus_MainPages.ViewModels
|
|
|
switch (currentChamber)
|
|
|
{
|
|
|
case JetChamber.Venus:
|
|
|
- case JetChamber.Kepler2300:
|
|
|
recipeStep.LstUnit.Add(new PressureByPressureModeUnit());
|
|
|
recipeStep.LstUnit.Add(new TCPUnit());
|
|
|
recipeStep.LstUnit.Add(new BiasUnit());
|
|
@@ -155,6 +149,13 @@ namespace Venus_MainPages.ViewModels
|
|
|
recipeStep.LstUnit.Add(new ESCHVUnit());
|
|
|
recipeStep.LstUnit.Add(new ProcessKitUnit());
|
|
|
break;
|
|
|
+ case JetChamber.Kepler2300:
|
|
|
+ recipeStep.LstUnit.Add(new PressureByPressureModeUnit());
|
|
|
+ recipeStep.LstUnit.Add(new TCPUnit());
|
|
|
+ recipeStep.LstUnit.Add(new BiasUnit());
|
|
|
+ recipeStep.LstUnit.Add(new GasControlUnit());
|
|
|
+ recipeStep.LstUnit.Add(new ProcessKitUnit());
|
|
|
+ break;
|
|
|
|
|
|
case JetChamber.Kepler2200A:
|
|
|
recipeStep.LstUnit.Add(new Kepler2200GasControlUnit());
|
|
@@ -244,12 +245,6 @@ namespace Venus_MainPages.ViewModels
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- //private void Timer_Tick(object sender, EventArgs e)
|
|
|
- //{
|
|
|
-
|
|
|
- //}
|
|
|
-
|
|
|
- TreeViewFileItem selectedItem;
|
|
|
private void TreeViewRcpList_SelectedItemChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
|
|
|
{
|
|
|
selectedItem = e.NewValue as TreeViewFileItem;
|
|
@@ -718,7 +713,6 @@ namespace Venus_MainPages.ViewModels
|
|
|
switch (currentChamber)
|
|
|
{
|
|
|
case JetChamber.Venus:
|
|
|
- case JetChamber.Kepler2300:
|
|
|
recipeStep.LstUnit.Add(new PressureByPressureModeUnit());
|
|
|
recipeStep.LstUnit.Add(new TCPUnit());
|
|
|
recipeStep.LstUnit.Add(new BiasUnit());
|
|
@@ -726,6 +720,13 @@ namespace Venus_MainPages.ViewModels
|
|
|
recipeStep.LstUnit.Add(new ESCHVUnit());
|
|
|
recipeStep.LstUnit.Add(new ProcessKitUnit());
|
|
|
break;
|
|
|
+ case JetChamber.Kepler2300:
|
|
|
+ recipeStep.LstUnit.Add(new PressureByPressureModeUnit());
|
|
|
+ recipeStep.LstUnit.Add(new TCPUnit());
|
|
|
+ recipeStep.LstUnit.Add(new BiasUnit());
|
|
|
+ recipeStep.LstUnit.Add(new GasControlUnit());
|
|
|
+ recipeStep.LstUnit.Add(new ProcessKitUnit());
|
|
|
+ break;
|
|
|
|
|
|
case JetChamber.Kepler2200A:
|
|
|
recipeStep.LstUnit.Add(new Kepler2200GasControlUnit());
|
|
@@ -806,15 +807,16 @@ namespace Venus_MainPages.ViewModels
|
|
|
string propertyTypeName = propertyInfo.PropertyType.Name;
|
|
|
if (propertyInfoName != "LstUnit")
|
|
|
{
|
|
|
+ if ((propertyInfoName == "EPDConfig" || propertyInfoName == "MinEndPointTime" || propertyInfoName == "MaxEndPointTime") && isInstalledEPD == false)
|
|
|
+ {
|
|
|
+ continue;
|
|
|
+
|
|
|
+ }
|
|
|
if (index == 0 && grid.ColumnDefinitions.Count == 1)
|
|
|
{
|
|
|
|
|
|
RowDefinition row1 = new RowDefinition();
|
|
|
- if ((propertyInfoName == "EPDConfig" || propertyInfoName == "MinEndPointTime" || propertyInfoName == "MaxEndPointTime") && isInstalledEPD == false)
|
|
|
- {
|
|
|
- row1.Height = new GridLength(0);
|
|
|
-
|
|
|
- }
|
|
|
+
|
|
|
grid.RowDefinitions.Add(row1);
|
|
|
}
|
|
|
|
|
@@ -838,8 +840,7 @@ namespace Venus_MainPages.ViewModels
|
|
|
UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged //触发器
|
|
|
};
|
|
|
switch (propertyTypeName)
|
|
|
- {
|
|
|
-
|
|
|
+ {
|
|
|
case "Int32":
|
|
|
case "String":
|
|
|
if (propertyInfoName == "EPDConfig")
|
|
@@ -855,7 +856,7 @@ namespace Venus_MainPages.ViewModels
|
|
|
grid.Children.Add(EPDcomboBox);
|
|
|
Grid.SetRow(EPDcomboBox, i);
|
|
|
Grid.SetColumn(EPDcomboBox, index + location);
|
|
|
- EPDcomboBox.DropDownOpened += EPDcomboBox_DropDownOpened;
|
|
|
+ //EPDcomboBox.DropDownOpened += EPDcomboBox_DropDownOpened;
|
|
|
}
|
|
|
else if (currentEPDType == EPDType.WCF)
|
|
|
{
|
|
@@ -876,19 +877,6 @@ namespace Venus_MainPages.ViewModels
|
|
|
}
|
|
|
|
|
|
TextBox textBox = new TextBox();
|
|
|
- if (propertyInfoName == "CycleNumber")
|
|
|
- {
|
|
|
- if (index + location == 1)
|
|
|
- {
|
|
|
- cycleNumberTextBox = textBox;
|
|
|
- Grid.SetColumnSpan(textBox, CurrentRecipe.Steps.Count);
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- Grid.SetColumnSpan(cycleNumberTextBox, CurrentRecipe.Steps.Count);
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
textBox.HorizontalContentAlignment = HorizontalAlignment.Center;
|
|
|
textBox.VerticalContentAlignment = VerticalAlignment.Center;
|
|
|
//if (stepcheckbinding == null)
|
|
@@ -998,17 +986,59 @@ namespace Venus_MainPages.ViewModels
|
|
|
}
|
|
|
|
|
|
int k = 0;
|
|
|
- recipeStep.LstUnit.ToList().ForEach(x =>
|
|
|
+ foreach (var x in recipeStep.LstUnit.ToList())
|
|
|
{
|
|
|
Type unitType = x.GetType();
|
|
|
-
|
|
|
+ bool isIgnore = false;
|
|
|
+ switch (currentChamber)
|
|
|
+ {
|
|
|
|
|
|
+ case JetChamber.Venus:
|
|
|
+ var VenusUnitsValues = Enum.GetValues(typeof(VenusUnits));
|
|
|
+ foreach (var item in VenusUnitsValues)
|
|
|
+ {
|
|
|
+ if (item.ToString() == unitType.Name)
|
|
|
+ {
|
|
|
+ isIgnore = true;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case JetChamber.Kepler2300:
|
|
|
+ var Kepler2300UintsValues = Enum.GetValues(typeof(Kepler2300Uints));
|
|
|
+ foreach (var item in Kepler2300UintsValues)
|
|
|
+ {
|
|
|
+ if (item.ToString() == unitType.Name)
|
|
|
+ {
|
|
|
+ isIgnore = true;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case JetChamber.Kepler2200A:
|
|
|
+ var Kepler2200AUintsValues = Enum.GetValues(typeof(Kepler2200AUnits));
|
|
|
+ foreach (var item in Kepler2200AUintsValues)
|
|
|
+ {
|
|
|
+ if (item.ToString() == unitType.Name)
|
|
|
+ {
|
|
|
+ isIgnore = true;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case JetChamber.Kepler2200B:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ if (!isIgnore)
|
|
|
+ {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
Binding checkbinding = null;
|
|
|
foreach (PropertyInfo propertyInfo in unitType.GetProperties())
|
|
|
{
|
|
|
object[] IgnoreAttrs = propertyInfo.GetCustomAttributes(typeof(IsCanConfigIgnore), true);
|
|
|
- bool IsEnableRecipeExtension= Convert.ToBoolean( QueryDataClient.Instance.Service.GetConfig($"{ModuleName}.IsEnableRecipeExtension"));
|
|
|
- if (IgnoreAttrs.Length > 0 && IsEnableRecipeExtension==false)
|
|
|
+ bool IsEnableRecipeExtension = Convert.ToBoolean(QueryDataClient.Instance.Service.GetConfig($"{ModuleName}.IsEnableRecipeExtension"));
|
|
|
+ if (IgnoreAttrs.Length > 0 && IsEnableRecipeExtension == false)
|
|
|
{
|
|
|
break;
|
|
|
}
|
|
@@ -1018,10 +1048,10 @@ namespace Venus_MainPages.ViewModels
|
|
|
RowDefinition row1 = new RowDefinition();
|
|
|
grid.RowDefinitions.Add(row1);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (grid.ColumnDefinitions.Count == 1 && j == 0)
|
|
|
{
|
|
|
-
|
|
|
+
|
|
|
|
|
|
TextBox textBlock = new TextBox();
|
|
|
textBlock.IsReadOnly = true;
|
|
@@ -1100,7 +1130,7 @@ namespace Venus_MainPages.ViewModels
|
|
|
{
|
|
|
TextBox textBlock1 = new TextBox();
|
|
|
textBlock1.HorizontalContentAlignment = HorizontalAlignment.Center;
|
|
|
- textBlock1.VerticalContentAlignment =VerticalAlignment.Center;
|
|
|
+ textBlock1.VerticalContentAlignment = VerticalAlignment.Center;
|
|
|
|
|
|
textBlock1.Text = propertyInfo.GetValue(x).ToString();
|
|
|
textBlock1.IsReadOnly = true;
|
|
@@ -1142,29 +1172,33 @@ namespace Venus_MainPages.ViewModels
|
|
|
break;
|
|
|
case "Gas3":
|
|
|
var data3 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas3");
|
|
|
-
|
|
|
+ TextBoxMaxValue.SetMaxValue(textBox, (int)data3.Scale);
|
|
|
+
|
|
|
break;
|
|
|
case "Gas4":
|
|
|
var data4 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas4");
|
|
|
-
|
|
|
+ TextBoxMaxValue.SetMaxValue(textBox, (int)data4.Scale);
|
|
|
+
|
|
|
break;
|
|
|
case "Gas5":
|
|
|
var data5 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas5");
|
|
|
-
|
|
|
+ TextBoxMaxValue.SetMaxValue(textBox, (int)data5.Scale);
|
|
|
+
|
|
|
break;
|
|
|
case "Gas6":
|
|
|
var data6 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas6");
|
|
|
-
|
|
|
+ TextBoxMaxValue.SetMaxValue(textBox, (int)data6.Scale);
|
|
|
break;
|
|
|
case "Gas7":
|
|
|
var data7 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas7");
|
|
|
-
|
|
|
+ TextBoxMaxValue.SetMaxValue(textBox, (int)data7.Scale);
|
|
|
+
|
|
|
break;
|
|
|
case "Gas8":
|
|
|
var data8 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas8");
|
|
|
-
|
|
|
+ TextBoxMaxValue.SetMaxValue(textBox, (int)data8.Scale);
|
|
|
break;
|
|
|
-
|
|
|
+
|
|
|
|
|
|
}
|
|
|
textBox.SetBinding(TextBox.TextProperty, binding);
|
|
@@ -1214,7 +1248,7 @@ namespace Venus_MainPages.ViewModels
|
|
|
{
|
|
|
comboBox.SetBinding(TextBox.IsEnabledProperty, checkbinding);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
comboBox.Background = Brushes.White;
|
|
|
string path = propertyInfo.Name;
|
|
|
comboBox.SetBinding(ComboBox.SelectedItemProperty, binding);
|
|
@@ -1229,17 +1263,21 @@ namespace Venus_MainPages.ViewModels
|
|
|
i++;
|
|
|
}
|
|
|
k++;
|
|
|
- });
|
|
|
+ }
|
|
|
+ //recipeStep.LstUnit.ToList().ForEach(x =>
|
|
|
+ //{
|
|
|
+
|
|
|
+ //});
|
|
|
//index++;
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
- private void EPDcomboBox_DropDownOpened(object sender, EventArgs e)
|
|
|
- {
|
|
|
+ //private void EPDcomboBox_DropDownOpened(object sender, EventArgs e)
|
|
|
+ //{
|
|
|
|
|
|
- }
|
|
|
+ //}
|
|
|
|
|
|
private void EPDButton_Click(object sender, RoutedEventArgs e)
|
|
|
{
|
|
@@ -1327,7 +1365,6 @@ namespace Venus_MainPages.ViewModels
|
|
|
switch (currentChamber)
|
|
|
{
|
|
|
case JetChamber.Venus:
|
|
|
- case JetChamber.Kepler2300:
|
|
|
recipeStep.LstUnit.Add(new PressureByPressureModeUnit());
|
|
|
recipeStep.LstUnit.Add(new TCPUnit());
|
|
|
recipeStep.LstUnit.Add(new BiasUnit());
|
|
@@ -1335,10 +1372,16 @@ namespace Venus_MainPages.ViewModels
|
|
|
recipeStep.LstUnit.Add(new ESCHVUnit());
|
|
|
recipeStep.LstUnit.Add(new ProcessKitUnit());
|
|
|
break;
|
|
|
+ case JetChamber.Kepler2300:
|
|
|
+ recipeStep.LstUnit.Add(new PressureByPressureModeUnit());
|
|
|
+ recipeStep.LstUnit.Add(new TCPUnit());
|
|
|
+ recipeStep.LstUnit.Add(new BiasUnit());
|
|
|
+ recipeStep.LstUnit.Add(new GasControlUnit());
|
|
|
+ recipeStep.LstUnit.Add(new ProcessKitUnit());
|
|
|
+ break;
|
|
|
|
|
|
case JetChamber.Kepler2200A:
|
|
|
recipeStep.LstUnit.Add(new Kepler2200GasControlUnit());
|
|
|
-
|
|
|
recipeStep.LstUnit.Add(new HeaterUnit());
|
|
|
recipeStep.LstUnit.Add(new Kepler2200RFUnit());
|
|
|
|
|
@@ -1368,13 +1411,14 @@ namespace Venus_MainPages.ViewModels
|
|
|
{
|
|
|
if (CurrentRecipe != null && CurrentRecipe.Steps.Count > 1)
|
|
|
{
|
|
|
- CurrentRecipe.Steps.RemoveAt(index);
|
|
|
currentRecipeGrid.Children.RemoveRange(currentRecipeGrid.RowDefinitions.Count * (index + 1), currentRecipeGrid.RowDefinitions.Count);
|
|
|
currentRecipeGrid.ColumnDefinitions.RemoveAt(index);
|
|
|
for (int i = 1; i <= CurrentRecipe.Steps.Count; i++)
|
|
|
{
|
|
|
CurrentRecipe.Steps[i - 1].StepNo = i;
|
|
|
}
|
|
|
+ CurrentRecipe.Steps.RemoveAt(index);
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
#endregion
|