| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142 | 
							- using Aitex.Core.Common.DeviceData;
 
- using Aitex.Core.RT.Log;
 
- using Aitex.Core.UI.ControlDataContext;
 
- using Aitex.Core.UI.MVVM;
 
- using Aitex.Core.Util;
 
- using MECF.Framework.Common.DataCenter;
 
- using MECF.Framework.Common.OperationCenter;
 
- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using System.Reflection;
 
- using System.Text;
 
- using System.Threading.Tasks;
 
- using System.Windows;
 
- using System.Windows.Input;
 
- using FurnaceGasPanelUI.Models;
 
- using MECF.Framework.UI.Core.Control;
 
- using static System.Windows.Forms.VisualStyles.VisualStyleElement.Window;
 
- using Aitex.Core.UI.Control;
 
- using OpenSEMI.ClientBase;
 
- using Aitex.Core.UI.DeviceControl;
 
- using MECF.Framework.UI.Core.ExtendedControls;
 
- namespace FurnaceGasPanelUI.Views.Maintenances.NTP
 
- {
 
-     public class GasPanelViewModel : ThermalGasPanelUIViewModelBase
 
-     {
 
-         public ICommand CmdSetMfcFlow { get; set; }
 
-         public bool _ismanagerPermission = true;
 
-         public Window WinOwner { get; set; }
 
-         public bool IsManagerPermission
 
-         {
 
-             get
 
-             {
 
-                 return _ismanagerPermission;
 
-             }
 
-             set
 
-             {
 
-                 _ismanagerPermission = value;
 
-                 NotifyOfPropertyChange("IsManagerPermission");
 
-             }
 
-         }
 
-         private bool _isRecipeEdit = false;
 
-         public bool ManualEnable { get; set; } = true;
 
-         public string ManualEnableColor
 
-         {
 
-             get
 
-             {
 
-                 if (ManualEnable)
 
-                 {
 
-                     return "Green";
 
-                 }
 
-                 return "#FFB0D1F1";
 
-             }
 
-         }
 
-         public void SwichManualEnable()
 
-         {
 
-             ManualEnable = true;
 
-         }
 
-         public void SwichMonitor()
 
-         {
 
-             ManualEnable = false;
 
-         }
 
-         public void SwichRecipe()
 
-         {
 
-             IsRecipeEdit = true;
 
-         }
 
-         public bool MonitorChecked { get; set; } = true;
 
-         public bool ManualChecked { get; set; } = false;
 
-         public bool IsRecipeEdit
 
-         {
 
-             get
 
-             {
 
-                 return _isRecipeEdit;
 
-             }
 
-             set
 
-             {
 
-                 _isRecipeEdit = value;
 
-                 NotifyOfPropertyChange("IsRecipeEdit");
 
-             }
 
-         }
 
-         public bool EditTrue { get; set; } = false;
 
-         [Subscription("PM1.SensorRecipeOK")]
 
-         public AITSensorData SensorRecipeOK { get; set; }
 
-         [Subscription("PM1.SensorPROCManualOK")]
 
-         public AITSensorData SensorPROCManualOK { get; set; }
 
-         [Subscription("System.VentValve.DeviceData")]
 
-         public AITValveData VentValveData { get; set; }
 
-         [Subscription("System.PumpValve.DeviceData")]
 
-         public AITValveData PumpValveData { get; set; }
 
-         [Subscription("PM1.SensorTubeATMPressure.DeviceData")]
 
-         public AITSensorData SensorTubeATMPressure { get; set; }
 
-         [Subscription("System.TubePressure.DeviceData")]
 
-         public AITPressureMeterData TubePressureData { get; set; }
 
-         [Subscription("PM1.SensorVAC1.Value")]
 
-         public bool VAC1 { get; set; }
 
-         [Subscription("PM1.SensorVAC2.Value")]
 
-         public bool VAC2 { get; set; }
 
-         [Subscription("PM1.SensorVAC3.Value")]
 
-         public bool VAC3 { get; set; }
 
-         #region Valves
 
-         [Subscription("PM1.ValveAV1.DeviceData")]
 
-         public AITValveData ValveAV1 { get; set; }
 
-         [Subscription("PM1.ValveAV2.DeviceData")]
 
-         public AITValveData ValveAV2 { get; set; }
 
-         [Subscription("PM1.ValveAV3.DeviceData")]
 
-         public AITValveData ValveAV3 { get; set; }
 
-         [Subscription("PM1.ValveAV4.DeviceData")]
 
-         public AITValveData ValveAV4 { get; set; }
 
-         [Subscription("PM1.ValveAV5.DeviceData")]
 
-         public AITValveData ValveAV5 { get; set; }
 
-         [Subscription("PM1.ValveAV6.DeviceData")]
 
-         public AITValveData ValveAV6 { get; set; }
 
-         [Subscription("PM1.ValveAV7.DeviceData")]
 
-         public AITValveData ValveAV7 { get; set; }
 
-         [Subscription("PM1.ValveAV8.DeviceData")]
 
-         public AITValveData ValveAV8 { get; set; }
 
-         [Subscription("PM1.ValveAV9.DeviceData")]
 
-         public AITValveData ValveAV9 { get; set; }
 
-         [Subscription("PM1.ValveAV10.DeviceData")]
 
-         public AITValveData ValveAV10 { get; set; }
 
-         [Subscription("PM1.ValveAV11.DeviceData")]
 
-         public AITValveData ValveAV11 { get; set; }
 
-         [Subscription("PM1.ValveAV12.DeviceData")]
 
-         public AITValveData ValveAV12 { get; set; }
 
-         [Subscription("PM1.ValveAV13.DeviceData")]
 
-         public AITValveData ValveAV13 { get; set; }
 
-         [Subscription("PM1.ValveAV14.DeviceData")]
 
-         public AITValveData ValveAV14 { get; set; }
 
-         [Subscription("PM1.ValveAV15.DeviceData")]
 
-         public AITValveData ValveAV15 { get; set; }
 
-         [Subscription("PM1.ValveAV16.DeviceData")]
 
-         public AITValveData ValveAV16 { get; set; }
 
-         [Subscription("PM1.ValveAV17.DeviceData")]
 
-         public AITValveData ValveAV17 { get; set; }
 
-         [Subscription("PM1.ValveAV18.DeviceData")]
 
-         public AITValveData ValveAV18 { get; set; }
 
-         [Subscription("PM1.ValveAV19.DeviceData")]
 
-         public AITValveData ValveAV19 { get; set; }
 
-         [Subscription("PM1.ValveAV20.DeviceData")]
 
-         public AITValveData ValveAV20 { get; set; }
 
-         [Subscription("PM1.ValveAV21.DeviceData")]
 
-         public AITValveData ValveAV21 { get; set; }
 
-         [Subscription("PM1.ValveAV22.DeviceData")]
 
-         public AITValveData ValveAV22 { get; set; }
 
-         [Subscription("PM1.ValveAV23.DeviceData")]
 
-         public AITValveData ValveAV23 { get; set; }
 
-         [Subscription("PM1.ValveAV24.DeviceData")]
 
-         public AITValveData ValveAV24 { get; set; }
 
-         [Subscription("PM1.ValveAV25.DeviceData")]
 
-         public AITValveData ValveAV25 { get; set; }
 
-         [Subscription("PM1.ValveAV26.DeviceData")]
 
-         public AITValveData ValveAV26 { get; set; }
 
-         [Subscription("PM1.ValveAV27.DeviceData")]
 
-         public AITValveData ValveAV27 { get; set; }
 
-         [Subscription("PM1.ValveAV28.DeviceData")]
 
-         public AITValveData ValveAV28 { get; set; }
 
-         [Subscription("PM1.ValveAV29.DeviceData")]
 
-         public AITValveData ValveAV29 { get; set; }
 
-         [Subscription("PM1.ValveAV30.DeviceData")]
 
-         public AITValveData ValveAV30 { get; set; }
 
-         [Subscription("PM1.ValveAV31.DeviceData")]
 
-         public AITValveData ValveAV31 { get; set; }
 
-         [Subscription("PM1.ValveAV32.DeviceData")]
 
-         public AITValveData ValveAV32 { get; set; }
 
-         [Subscription("PM1.ValveAV33.DeviceData")]
 
-         public AITValveData ValveAV33 { get; set; }
 
-         [Subscription("PM1.ValveAV34.DeviceData")]
 
-         public AITValveData ValveAV34 { get; set; }
 
-         [Subscription("PM1.ValveAV35.DeviceData")]
 
-         public AITValveData ValveAV35 { get; set; }
 
-         [Subscription("PM1.ValveAV36.DeviceData")]
 
-         public AITValveData ValveAV36 { get; set; }
 
-         [Subscription("PM1.ValveAV37.DeviceData")]
 
-         public AITValveData ValveAV37 { get; set; }
 
-         [Subscription("PM1.ValveAV38.DeviceData")]
 
-         public AITValveData ValveAV38 { get; set; }
 
-         [Subscription("PM1.ValveAV39.DeviceData")]
 
-         public AITValveData ValveAV39 { get; set; }
 
-         [Subscription("PM1.ValveAV52.DeviceData")]
 
-         public AITValveData ValveAV52 { get; set; }
 
-         [Subscription("PM1.ValveAV54.DeviceData")]
 
-         public AITValveData ValveAV54 { get; set; }
 
-         [Subscription("PM1.ValveAV56.DeviceData")]
 
-         public AITValveData ValveAV56 { get; set; }
 
-         [Subscription("PM1.ValveAV57.DeviceData")]
 
-         public AITValveData ValveAV57 { get; set; }
 
-         [Subscription("PM1.ValveAV58.DeviceData")]
 
-         public AITValveData ValveAV58 { get; set; }
 
-         [Subscription("PM1.ValveAV59.DeviceData")]
 
-         public AITValveData ValveAV59 { get; set; }
 
-         [Subscription("PM1.ValveAV60.DeviceData")]
 
-         public AITValveData ValveAV60 { get; set; }
 
-         [Subscription("PM1.ValveFIMS1N2Purge.DeviceData")]
 
-         public AITValveData ValveAV63 { get; set; }
 
-         [Subscription("PM1.ValveFIMS2N2Purge.DeviceData")]
 
-         public AITValveData ValveAV64 { get; set; }
 
-         [Subscription("PM1.ValveAV65.DeviceData")]
 
-         public AITValveData ValveAV65 { get; set; }
 
-         [Subscription("PM1.ValveAV66.DeviceData")]
 
-         public AITValveData ValveAV66 { get; set; }
 
-         [Subscription("PM1.ValveAV68.DeviceData")]
 
-         public AITValveData ValveAV68 { get; set; }
 
-         [Subscription("PM1.APC.ModeFeedback")]
 
-         public int APCModeFeedback { get; set; }
 
-         [Subscription("PM1.ValveAV71.DeviceData")] public AITValveData ValveAV71Data { get; set; }
 
-         public AITValveData ValveAV71
 
-         {
 
-             get
 
-             {
 
-                 return new AITValveData()
 
-                 {
 
-                     DeviceName = ValveAV71Data.DeviceName,
 
-                     DisplayName = ValveAV71Data.DisplayName,
 
-                     UniqueName = ValveAV71Data.UniqueName,
 
-                     DefaultValue = ValveAV71Data.DefaultValue,
 
-                     SetPoint = ValveAV71Data.SetPoint,
 
-                     Feedback = APCModeFeedback != 5,
 
-                     VirtualFeedback = ValveAV71Data.VirtualFeedback
 
-                 };
 
-             }
 
-         }
 
-         [Subscription("PM1.ValveAV72.DeviceData")]
 
-         public AITValveData ValveAV72 { get; set; }
 
-         [Subscription("PM1.ValveAV73.DeviceData")]
 
-         public AITValveData ValveAV73 { get; set; }
 
-         [Subscription("PM1.ValveAV74.DeviceData")]
 
-         public AITValveData ValveAV74 { get; set; }
 
-         [Subscription("PM1.ValveAV75.DeviceData")]
 
-         public AITValveData ValveAV75 { get; set; }
 
-         [Subscription("PM1.ValveAV77.DeviceData")]
 
-         public AITValveData ValveAV77 { get; set; }
 
-         [Subscription("PM1.ValveAV81.DeviceData")]
 
-         public AITValveData ValveAV81 { get; set; }
 
-         [Subscription("PM1.ValveAV82.DeviceData")]
 
-         public AITValveData ValveAV82 { get; set; }
 
-         [Subscription("PM1.ValveAV83.DeviceData")]
 
-         public AITValveData ValveAV83 { get; set; }
 
-         [Subscription("PM1.ValveAV91.DeviceData")]
 
-         public AITValveData ValveDPR { get; set; }
 
-         public string ValveDPRBrush
 
-         {
 
-             get
 
-             {
 
-                 if (ValveDPR != null && ValveDPR.Feedback)
 
-                 {
 
-                     return "Green";
 
-                 }
 
-                 return "#FFB0D1F1";
 
-             }
 
-         }
 
-         [Subscription("PM1.ValveBlowerPowerOn.DeviceData")]
 
-         public AITValveData ValveBWR { get; set; }
 
-         public string ValveBWRBrush
 
-         {
 
-             get
 
-             {
 
-                 if (ValveBWR != null && ValveBWR.Feedback)
 
-                 {
 
-                     return "Green";
 
-                 }
 
-                 return "#FFB0D1F1";
 
-             }
 
-         }
 
-         [Subscription("PM1.IsF2ClnOn")]
 
-         public bool IsF2ClnOn { get; set; }
 
-         public string F2ClnBrush
 
-         {
 
-             get
 
-             {
 
-                 if (IsF2ClnOn)
 
-                 {
 
-                     return "Green";
 
-                 }
 
-                 return "#FFB0D1F1";
 
-             }
 
-         }
 
-         [Subscription("PM1.IsHFClnOn")]
 
-         public bool IsHFClnOn { get; set; }
 
-         public string HFClnBrush
 
-         {
 
-             get
 
-             {
 
-                 if (IsHFClnOn)
 
-                 {
 
-                     return "Green";
 
-                 }
 
-                 return "#FFB0D1F1";
 
-             }
 
-         }
 
-         [Subscription("PM1.HTR1Enable")]
 
-         public bool IsHTR1Enable { get; set; }
 
-         public string HTR1Brush
 
-         {
 
-             get
 
-             {
 
-                 if (IsHTR1Enable)
 
-                 {
 
-                     return "Green";
 
-                 }
 
-                 return "#FFB0D1F1";
 
-             }
 
-         }
 
-         [Subscription("PM1.HTR2Enable")]
 
-         public bool IsHTR2Enable { get; set; }
 
-         public string HTR2Brush
 
-         {
 
-             get
 
-             {
 
-                 if (IsHTR2Enable)
 
-                 {
 
-                     return "Green";
 
-                 }
 
-                 return "#FFB0D1F1";
 
-             }
 
-         }
 
-         [Subscription("PM1.AUCPump.DeviceData")]
 
-         public AITValveData AUCPump { get; set; }
 
-         public string AUCPumpBrush
 
-         {
 
-             get
 
-             {
 
-                 if (AUCPump != null && AUCPump.Feedback)
 
-                 {
 
-                     return "Green";
 
-                 }
 
-                 return "#FFB0D1F1";
 
-             }
 
-         }
 
-         [Subscription("PM1.BothPump.DeviceData")]
 
-         public AITValveData BothPump { get; set; }
 
-         public string BothPumpBrush
 
-         {
 
-             get
 
-             {
 
-                 if (BothPump != null && BothPump.Feedback)
 
-                 {
 
-                     return "Green";
 
-                 }
 
-                 return "#FFB0D1F1";
 
-             }
 
-         }
 
-         [Subscription("PM1.AGVPump.DeviceData")]
 
-         public AITValveData AGVPump { get; set; }
 
-         public string AGVPumpBrush
 
-         {
 
-             get
 
-             {
 
-                 if (AGVPump != null && AGVPump.Feedback)
 
-                 {
 
-                     return "Green";
 
-                 }
 
-                 return "#FFB0D1F1";
 
-             }
 
-         }
 
-         #endregion
 
-         #region MFCs
 
-         [Subscription("PM1.MFC1.DeviceData")]
 
-         public AITMfcData MFC1Data { get; set; }
 
-         [Subscription("PM1.MFC2.DeviceData")]
 
-         public AITMfcData MFC2Data { get; set; }
 
-         [Subscription("PM1.MFC3.DeviceData")]
 
-         public AITMfcData MFC3Data { get; set; }
 
-         [Subscription("PM1.MFC4.DeviceData")]
 
-         public AITMfcData MFC4Data { get; set; }
 
-         [Subscription("PM1.MFC5.DeviceData")]
 
-         public AITMfcData MFC5Data { get; set; }
 
-         [Subscription("PM1.MFC6.DeviceData")]
 
-         public AITMfcData MFC6Data { get; set; }
 
-         [Subscription("PM1.MFC7.DeviceData")]
 
-         public AITMfcData MFC7Data { get; set; }
 
-         [Subscription("PM1.MFC8.DeviceData")]
 
-         public AITMfcData MFC8Data { get; set; }
 
-         [Subscription("PM1.MFC9.DeviceData")]
 
-         public AITMfcData MFC9Data { get; set; }
 
-         [Subscription("PM1.MFC10.DeviceData")]
 
-         public AITMfcData MFC10Data { get; set; }
 
-         [Subscription("PM1.MFC11.DeviceData")]
 
-         public AITMfcData MFC11Data { get; set; }
 
-         [Subscription("PM1.MFC12.DeviceData")]
 
-         public AITMfcData MFC12Data { get; set; }
 
-         [Subscription("PM1.MFC51.DeviceData")]
 
-         public AITMfcData MFC51Data { get; set; }
 
-         #endregion
 
-         [Subscription("PM1.MFM57.DeviceData")]
 
-         public AITWaterFlowMeterData MFM57Flow { get; set; }
 
-         [Subscription("PM1.RfPower.IsPowerOn")]
 
-         public bool IsPowerOn { get; set; }
 
-         [Subscription("PM1.RfPower.PowerSetPoint")]
 
-         public float PowerSetPoint { get; set; }
 
-         [Subscription("PM1.RfPower.ForwardPower")]
 
-         public float ForwardPower { get; set; }
 
-         [Subscription("PM1.RfMatch.Capacitance1PositionFeedBack")]
 
-         public float Capacitance1PositionFeedBack { get; set; }
 
-         [Subscription("PM1.RfMatch.Capacitance2PositionFeedBack")]
 
-         public float Capacitance2PositionFeedBack { get; set; }
 
-         [Subscription("PM1.RfMatch.VppFeedBack")]
 
-         public float VppFeedBack { get; set; }
 
-         public ICommand CmdSetValve { get; set; }
 
-         private GasPanelStateType _selectedGasStateType = GasPanelStateType.Monitor;
 
-         public GasPanelStateType SelectedGasStateType
 
-         {
 
-             get
 
-             {
 
-                 return _selectedGasStateType;
 
-             }
 
-             set
 
-             {
 
-                 _selectedGasStateType = value;
 
-                 NotifyOfPropertyChange(nameof(SelectedGasStateType));
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC1
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC1Data.UniqueName,
 
-                     DeviceId = MFC1Data.DeviceSchematicId,
 
-                     DisplayName = MFC1Data.DisplayName,
 
-                     Scale = MFC1Data.Scale,
 
-                     Unit = MFC1Data.Unit,
 
-                     FeedBack = MFC1Data.FeedBack,
 
-                     SetPoint = MFC1Data.SetPoint,
 
-                     VirtualFeedBack = MFC1Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC2
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC2Data.UniqueName,
 
-                     DeviceId = MFC2Data.DeviceSchematicId,
 
-                     DisplayName = MFC2Data.DisplayName,
 
-                     Scale = MFC2Data.Scale,
 
-                     Unit = MFC2Data.Unit,
 
-                     FeedBack = MFC2Data.FeedBack,
 
-                     SetPoint = MFC2Data.SetPoint,
 
-                     VirtualFeedBack = MFC2Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC3
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC3Data.UniqueName,
 
-                     DeviceId = MFC3Data.DeviceSchematicId,
 
-                     DisplayName = MFC3Data.DisplayName,
 
-                     Scale = MFC3Data.Scale,
 
-                     Unit = MFC3Data.Unit,
 
-                     FeedBack = MFC3Data.FeedBack,
 
-                     SetPoint = MFC3Data.SetPoint,
 
-                     VirtualFeedBack = MFC3Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC4
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC4Data.UniqueName,
 
-                     DeviceId = MFC4Data.DeviceSchematicId,
 
-                     DisplayName = MFC4Data.DisplayName,
 
-                     Scale = MFC4Data.Scale,
 
-                     Unit = MFC4Data.Unit,
 
-                     FeedBack = MFC4Data.FeedBack,
 
-                     SetPoint = MFC4Data.SetPoint,
 
-                     VirtualFeedBack = MFC4Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC5
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC5Data.UniqueName,
 
-                     DeviceId = MFC5Data.DeviceSchematicId,
 
-                     DisplayName = MFC5Data.DisplayName,
 
-                     Scale = MFC5Data.Scale,
 
-                     Unit = MFC5Data.Unit,
 
-                     FeedBack = MFC5Data.FeedBack,
 
-                     SetPoint = MFC5Data.SetPoint,
 
-                     VirtualFeedBack = MFC5Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC6
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC6Data.UniqueName,
 
-                     DeviceId = MFC6Data.DeviceSchematicId,
 
-                     DisplayName = MFC6Data.DisplayName,
 
-                     Scale = MFC6Data.Scale,
 
-                     Unit = MFC6Data.Unit,
 
-                     FeedBack = MFC6Data.FeedBack,
 
-                     SetPoint = MFC6Data.SetPoint,
 
-                     VirtualFeedBack = MFC6Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC7
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC7Data.UniqueName,
 
-                     DeviceId = MFC7Data.DeviceSchematicId,
 
-                     DisplayName = MFC7Data.DisplayName,
 
-                     Scale = MFC7Data.Scale,
 
-                     Unit = MFC7Data.Unit,
 
-                     FeedBack = MFC7Data.FeedBack,
 
-                     SetPoint = MFC7Data.SetPoint,
 
-                     VirtualFeedBack = MFC7Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC8
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC8Data.UniqueName,
 
-                     DeviceId = MFC8Data.DeviceSchematicId,
 
-                     DisplayName = MFC8Data.DisplayName,
 
-                     Scale = MFC8Data.Scale,
 
-                     Unit = MFC8Data.Unit,
 
-                     FeedBack = MFC8Data.FeedBack,
 
-                     SetPoint = MFC8Data.SetPoint,
 
-                     VirtualFeedBack = MFC8Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC9
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC9Data.UniqueName,
 
-                     DeviceId = MFC9Data.DeviceSchematicId,
 
-                     DisplayName = MFC9Data.DisplayName,
 
-                     Scale = MFC9Data.Scale,
 
-                     Unit = MFC9Data.Unit,
 
-                     FeedBack = MFC9Data.FeedBack,
 
-                     SetPoint = MFC9Data.SetPoint,
 
-                     VirtualFeedBack = MFC9Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC10
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC10Data.UniqueName,
 
-                     DeviceId = MFC10Data.DeviceSchematicId,
 
-                     DisplayName = MFC10Data.DisplayName,
 
-                     Scale = MFC10Data.Scale,
 
-                     Unit = MFC10Data.Unit,
 
-                     FeedBack = MFC10Data.FeedBack,
 
-                     SetPoint = MFC10Data.SetPoint,
 
-                     VirtualFeedBack = MFC10Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC11
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC11Data.UniqueName,
 
-                     DeviceId = MFC11Data.DeviceSchematicId,
 
-                     DisplayName = MFC11Data.DisplayName,
 
-                     Scale = MFC11Data.Scale,
 
-                     Unit = MFC11Data.Unit,
 
-                     FeedBack = MFC11Data.FeedBack,
 
-                     SetPoint = MFC11Data.SetPoint,
 
-                     VirtualFeedBack = MFC11Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC12
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC12Data.UniqueName,
 
-                     DeviceId = MFC12Data.DeviceSchematicId,
 
-                     DisplayName = MFC12Data.DisplayName,
 
-                     Scale = MFC12Data.Scale,
 
-                     Unit = MFC12Data.Unit,
 
-                     FeedBack = MFC12Data.FeedBack,
 
-                     SetPoint = MFC12Data.SetPoint,
 
-                     VirtualFeedBack = MFC12Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFC51
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFC",
 
-                     DeviceName = MFC51Data.UniqueName,
 
-                     DeviceId = MFC51Data.DeviceSchematicId,
 
-                     DisplayName = MFC51Data.DisplayName,
 
-                     Scale = MFC51Data.Scale,
 
-                     Unit = MFC51Data.Unit,
 
-                     FeedBack = MFC51Data.FeedBack,
 
-                     SetPoint = MFC51Data.SetPoint,
 
-                     VirtualFeedBack = MFC51Data.VirtualFeedBack
 
-                 };
 
-             }
 
-         }
 
-         public AnalogDeviceDataItem MFM57
 
-         {
 
-             get
 
-             {
 
-                 return new AnalogDeviceDataItem
 
-                 {
 
-                     Type = "MFM",
 
-                     DeviceId = MFM57Flow.DeviceSchematicId,
 
-                     DisplayName = MFM57Flow.DisplayName,
 
-                     Scale = MFM57Flow.Scale,
 
-                     Unit = MFM57Flow.Unit,
 
-                     FeedBack = MFM57Flow.FeedBack,
 
-                     SetPoint = MFM57Flow.SetPoint,
 
-                 };
 
-             }
 
-         }
 
-         public string IsRfPowerOn
 
-         {
 
-             get
 
-             {
 
-                 return IsPowerOn ? "On" : "Off";
 
-             }
 
-         }
 
-         private bool _manualCheckSelect = false;
 
-         private bool _manualCheck = true;
 
-         public bool ManualCheck
 
-         {
 
-             get => _manualCheck;
 
-             set
 
-             {
 
-                 _manualCheck = value;
 
-                 NotifyOfPropertyChange(nameof(ManualCheck));
 
-             }
 
-         }
 
-         private bool _manualCheckHide;
 
-         public bool ManumalCheckHide
 
-         {
 
-             get => _manualCheckHide;
 
-             set
 
-             {
 
-                 _manualCheckHide = value;
 
-                 NotifyOfPropertyChange(nameof(ManumalCheckHide));
 
-             }
 
-         }
 
-         public bool ValveTrue { get; set; } = true;
 
-         public bool ValveFalse { get; set; } = false;
 
-         private bool _enablePLCPointControl = false;
 
-         public bool EnablePLCPointControl
 
-         {
 
-             get => _enablePLCPointControl;
 
-             set
 
-             {
 
-                 _enablePLCPointControl = value;
 
-                 NotifyOfPropertyChange(nameof(EnablePLCPointControl));
 
-             }
 
-         }
 
-         public GasPanelViewModel()
 
-         {
 
-             CmdSetMfcFlow = new DelegateCommand<object>(PerformCmdSetMfcFlow);
 
-         }
 
-         public void SelectedGasStateTypeCmd(string cmd)
 
-         {
 
-             switch (cmd)
 
-             {
 
-                 case "Manual":
 
-                     SelectedGasStateType = GasPanelStateType.Manual;
 
-                     ManualEnable = true;
 
-                     break;
 
-                 case "Monitor":
 
-                     SelectedGasStateType = GasPanelStateType.Monitor;
 
-                     ManualEnable = true;
 
-                     break;
 
-                 case "Recipe":
 
-                     SelectedGasStateType = GasPanelStateType.Recipe;
 
-                     ManualEnable = false;
 
-                     break;
 
-                 default:
 
-                     break;
 
-             }
 
-         }
 
-         protected override void OnActivate()
 
-         {
 
-             base.OnActivate();
 
-             //  EnableServiceControl = (bool)QueryDataClient.Instance.Service.GetConfig("System.IsServiceControlMode");
 
-             //   IsMfcNRInstalled = (bool)QueryDataClient.Instance.Service.GetConfig("PM1.MFC.MfcNR.IsMFCInstalled");
 
-         }
 
-         public void SetEditClick()
 
-         {
 
-             IsRecipeEdit = true;
 
-             //  EnableServiceControl = false;
 
-         }
 
-         protected override void OnDeactivate(bool close)
 
-         {
 
-             base.OnDeactivate(close);
 
-             //IsManagerPermission = false;
 
-         }
 
-         public void SetManual()
 
-         {
 
-             if (!_manualCheckSelect)
 
-             {
 
-                 _manualCheckSelect = !_manualCheckSelect;
 
-                 IsManagerPermission = true;
 
-                 EnablePLCPointControl = false;
 
-             }
 
-             else
 
-             {
 
-                 IsManagerPermission = true;
 
-                 ManualCheck = false;
 
-                 ManumalCheckHide = true;
 
-                 _manualCheckSelect = !_manualCheckSelect;
 
-                 EnablePLCPointControl = true;
 
-             }
 
-         }
 
-         public void OpenAll()
 
-         {
 
-             if (!VentValveData.IsOpen)
 
-                 InvokeClient.Instance.Service.DoOperation($"{VentValveData.UniqueName}.{AITValveOperation.GVTurnValve}", true);
 
-             if (!PumpValveData.IsOpen)
 
-                 InvokeClient.Instance.Service.DoOperation($"{PumpValveData.UniqueName}.{AITValveOperation.GVTurnValve}", true);
 
-         }
 
-         public void CloseAll()
 
-         {
 
-             if (PumpValveData.IsOpen)
 
-                 InvokeClient.Instance.Service.DoOperation($"{PumpValveData.UniqueName}.{AITValveOperation.GVTurnValve}", false);
 
-             if (VentValveData.IsOpen)
 
-                 InvokeClient.Instance.Service.DoOperation($"{VentValveData.UniqueName}.{AITValveOperation.GVTurnValve}", false);
 
-         }
 
-         private void PerformCmdSetMfcFlow(object param)
 
-         {
 
-             object[] args = (object[])param; //0:devicename, 1:operation, 2:args
 
-             if (args.Length == 3)
 
-             {
 
-                 InvokeClient.Instance.Service.DoOperation($"{args[0]}.{args[1]}", args[2]);
 
-             }
 
-         }
 
-         bool isSensorRecipeOK = false;
 
-         Dictionary<string, object> oldresult;
 
-         private Dictionary<string, object> ClearNotChangedValue(Dictionary<string, object> result)
 
-         {
 
-             Dictionary<string, object> temp = result;
 
-             if (oldresult == null)
 
-             {
 
-                 oldresult = result;
 
-             }
 
-             else
 
-             {
 
-                 try
 
-                 {
 
-                     List<string> strkeys = new List<string>();
 
-                     foreach (var key in result.Keys)
 
-                     {
 
-                         if (_subscribedKeys.Contains(key) && oldresult.ContainsKey(key) && result.ContainsKey(key))
 
-                         {
 
-                             if (result[key].GetType() == typeof(AITValveData) && (((AITValveData)oldresult[key]).Feedback != ((AITValveData)result[key]).Feedback
 
-                                 || ((AITValveData)oldresult[key]).VirtualFeedback != ((AITValveData)result[key]).VirtualFeedback))
 
-                             {
 
-                                 strkeys.Add(key);
 
-                             }
 
-                             else if (result[key].GetType() == typeof(AITSensorData) && ((AITSensorData)oldresult[key]).Value != ((AITSensorData)result[key]).Value)
 
-                             {
 
-                                 strkeys.Add(key);
 
-                             }
 
-                             else if (result[key].GetType() == typeof(AITMfcData) && (((AITMfcData)oldresult[key]).FeedBack != ((AITMfcData)result[key]).FeedBack ||
 
-                                ((AITMfcData)oldresult[key]).VirtualFeedBack != ((AITMfcData)result[key]).VirtualFeedBack))
 
-                             {
 
-                                 strkeys.Add(key);
 
-                             }
 
-                             else if (result[key].GetType() == typeof(float) && (float)oldresult[key] == (float)result[key])
 
-                             {
 
-                                 strkeys.Add(key);
 
-                             }
 
-                             else if (result[key].GetType() == typeof(int) && (int)oldresult[key] == (int)result[key])
 
-                             {
 
-                                 strkeys.Add(key);
 
-                             }
 
-                             else if (result[key].GetType() == typeof(bool) && (bool)oldresult[key] == (bool)result[key])
 
-                             {
 
-                                 strkeys.Add(key);
 
-                             }
 
-                         }
 
-                     }
 
-                     for (int i = 0; i < strkeys.Count; i++)
 
-                     {
 
-                         temp.Remove(strkeys[i]);
 
-                     }
 
-                 }
 
-                 catch (Exception ex)
 
-                 {
 
-                     LOG.Error("由RT返回的数据更新失败" + "ClearNotChangedValue", ex);
 
-                 }
 
-             }
 
-             return temp;
 
-         }
 
-         protected override void Poll()
 
-         {
 
-             if (_subscribedKeys.Count > 0)
 
-             {
 
-                 Dictionary<string, object> result = QueryDataClient.Instance.Service.PollData(_subscribedKeys);
 
-                 Dictionary<string, object> Tempresult = new Dictionary<string, object>(result);
 
-                 if (SelectedGasStateType != GasPanelStateType.Monitor)
 
-                 {
 
-                     result = ClearNotChangedValue(result);
 
-                 }
 
-                 oldresult = Tempresult;
 
-                 if (result == null)
 
-                 {
 
-                     LOG.Error("获取RT数据失败");
 
-                     return;
 
-                 }
 
-                 if (result.Count != _subscribedKeys.Count)
 
-                 {
 
-                     string unknowKeys = string.Empty;
 
-                     foreach (string key in _subscribedKeys)
 
-                     {
 
-                         if (!result.ContainsKey(key))
 
-                         {
 
-                             unknowKeys += key + "\r\n";
 
-                         }
 
-                     }
 
-                 }
 
-                 InvokeBeforeUpdateProperty(result);
 
-                 UpdateValue(result);
 
-                 Application.Current?.Dispatcher.Invoke(new Action(() =>
 
-                 {
 
-                     if (result.Count != 0)
 
-                     {
 
-                         InvokePropertyChanged();
 
-                     }
 
-                     InvokeAfterUpdateProperty(result);
 
-                 }));
 
-             }
 
-         }
 
-         protected override void InvokeBeforeUpdateProperty(Dictionary<string, object> data)
 
-         {
 
-             //List<string> aITValveDataKeys = new List<string>();
 
-             //List<string> aITSensorDataKeys = new List<string>();
 
-             //List<string> aITMfcDataKeys = new List<string>();
 
-             //foreach (var item in data.Keys)
 
-             //{
 
-             //    try
 
-             //    {
 
-             //        if (data[item].GetType() == typeof(AITValveData))
 
-             //        {
 
-             //            var array = item.Split('.');
 
-             //            if (array.Length > 1)
 
-             //            {
 
-             //                var name = array[1];
 
-             //                var property = this.GetType().GetProperties().Where(x => x.Name == name).FirstOrDefault();
 
-             //                object value = property.GetValue(this, null);
 
-             //                if (value != null && ((AITValveData)value).Equals((AITValveData)data[item]))
 
-             //                    aITValveDataKeys.Add(item);
 
-             //            }
 
-             //        }
 
-             //        else if (data[item].GetType() == typeof(AITSensorData))
 
-             //        {
 
-             //            var array = item.Split('.');
 
-             //            if (array.Length > 1)
 
-             //            {
 
-             //                var name = array[1];
 
-             //                var property = this.GetType().GetProperties().Where(x => x.Name == name).FirstOrDefault();
 
-             //                object value = property.GetValue(this, null);
 
-             //                if (value != null && ((AITSensorData)value).Equals((AITSensorData)data[item]))
 
-             //                    aITSensorDataKeys.Add(item);
 
-             //            }
 
-             //        }
 
-             //        else if (data[item].GetType() == typeof(AITMfcData))
 
-             //        {
 
-             //            var array = item.Split('.');
 
-             //            if (array.Length > 1)
 
-             //            {
 
-             //                var name = array[1];
 
-             //                var property = this.GetType().GetProperties().Where(x => x.Name == $"{name}Data").FirstOrDefault();
 
-             //                object value = property.GetValue(this, null);
 
-             //                if (value != null && ((AITMfcData)value).Equals((AITMfcData)data[item]))
 
-             //                    aITMfcDataKeys.Add(item);
 
-             //            }
 
-             //        }
 
-             //    }
 
-             //    catch (Exception ex)
 
-             //    {
 
-             //        Console.WriteLine(ex.Message);
 
-             //    }
 
-             //}
 
-             //if (aITValveDataKeys.Count > 0)
 
-             //{
 
-             //    foreach (var item in aITValveDataKeys)
 
-             //    {
 
-             //        data.Remove(item);
 
-             //    }
 
-             //}
 
-             //if (aITSensorDataKeys.Count > 0)
 
-             //{
 
-             //    foreach (var item in aITSensorDataKeys)
 
-             //    {
 
-             //        data.Remove(item);
 
-             //    }
 
-             //}
 
-             //if (aITMfcDataKeys.Count > 0)
 
-             //{
 
-             //    foreach (var item in aITMfcDataKeys)
 
-             //    {
 
-             //        data.Remove(item);
 
-             //    }
 
-             //}
 
-             base.InvokeBeforeUpdateProperty(data);
 
-         }
 
-         protected override void InvokeAfterUpdateProperty(Dictionary<string, object> data)
 
-         {
 
-             base.InvokeAfterUpdateProperty(data);
 
-             if (SensorRecipeOK != null && SensorRecipeOK.Value)
 
-             {
 
-                 if (isSensorRecipeOK != SensorRecipeOK.Value)
 
-                 {
 
-                     _manualCheckSelect = false;
 
-                     IsManagerPermission = true;
 
-                     IsRecipeEdit = true;
 
-                     //  EnableServiceControl = false;
 
-                 }
 
-                 isSensorRecipeOK = SensorRecipeOK.Value;
 
-             }
 
-         }
 
-         public void SwichValue(string name)
 
-         {
 
-             if (SelectedGasStateType == GasPanelStateType.Monitor || SelectedGasStateType == GasPanelStateType.Recipe) return;
 
-             var dialog = new SwitchValueDialog { };
 
-             dialog.IsOpen = true;
 
-             switch (name.ToUpper())
 
-             {
 
-                 case "BWR":
 
-                     dialog.IsOpen = ValveBWR.Feedback;
 
-                     break;
 
-                 case "DPR":
 
-                     dialog.IsOpen = ValveDPR.Feedback;
 
-                     break;
 
-                 case "F2":
 
-                     dialog.IsOpen = IsF2ClnOn;
 
-                     break;
 
-                 case "HF":
 
-                     dialog.IsOpen = IsHFClnOn;
 
-                     break;
 
-             }
 
-             dialog.Owner = WinOwner;
 
-             dialog.Topmost = true;
 
-             dialog.WindowStartupLocation = WindowStartupLocation.CenterScreen;
 
-             dialog.DeviceName = $"Swich {name}";
 
-             dialog.ShowDialog();
 
-             if ((bool)dialog.IsSave)
 
-             {
 
-                 switch (name.ToUpper())
 
-                 {
 
-                     case "BWR":
 
-                         InvokeClient.Instance.Service.DoOperation($"{ValveBWR.UniqueName}.{AITValveOperation.GVTurnValve}", dialog.IsOpen);
 
-                         break;
 
-                     case "DPR":
 
-                         InvokeClient.Instance.Service.DoOperation($"{ValveDPR.UniqueName}.{AITValveOperation.GVTurnValve}", dialog.IsOpen);
 
-                         break;
 
-                     case "F2":
 
-                         InvokeClient.Instance.Service.DoOperation($"PM1.SetF2ClnEnable", dialog.IsOpen);
 
-                         break;
 
-                     case "HF":
 
-                         InvokeClient.Instance.Service.DoOperation($"PM1.SetHFClnEnable", dialog.IsOpen);
 
-                         break;
 
-                 }
 
-             }
 
-         }
 
-         public void SetEnable(string name)
 
-         {
 
-             if (SelectedGasStateType == GasPanelStateType.Monitor || SelectedGasStateType == GasPanelStateType.Recipe) return;
 
-             var dialog = new SwitchValueDialog2 { };
 
-             dialog.IsOpen = true;
 
-             switch (name.ToUpper())
 
-             {
 
-                 case "HTR1":
 
-                     dialog.IsOpen = IsHTR1Enable;
 
-                     break;
 
-                 case "HTR2":
 
-                     dialog.IsOpen = IsHTR2Enable;
 
-                     break;
 
-             }
 
-             dialog.Owner = WinOwner;
 
-             dialog.Topmost = true;
 
-             dialog.WindowStartupLocation = WindowStartupLocation.CenterScreen;
 
-             dialog.DeviceName = $"Swich {name}";
 
-             dialog.ShowDialog();
 
-             if ((bool)dialog.IsSave)
 
-             {
 
-                 switch (name.ToUpper())
 
-                 {
 
-                     case "HTR1":
 
-                         InvokeClient.Instance.Service.DoOperation($"PM1.SetHTR1Enable", dialog.IsOpen);
 
-                         break;
 
-                     case "HTR2":
 
-                         InvokeClient.Instance.Service.DoOperation($"PM1.SetHTR2Enable", dialog.IsOpen);
 
-                         break;
 
-                 }
 
-             }
 
-         }
 
-         public void SelectPump(string _pumpname)
 
-         {
 
-             if (SelectedGasStateType == GasPanelStateType.Monitor || SelectedGasStateType == GasPanelStateType.Recipe) return;
 
-             if (!DialogBox.Confirm($"Are you sure change {_pumpname} status?"))
 
-                 return;
 
-             if (_pumpname == "AUC")
 
-             {
 
-                 InvokeClient.Instance.Service.DoOperation($"{AUCPump.UniqueName}.{AITValveOperation.GVTurnValve}", !AUCPump.Feedback);
 
-             }
 
-             if (_pumpname == "AGV")
 
-             {
 
-                 InvokeClient.Instance.Service.DoOperation($"{AGVPump.UniqueName}.{AITValveOperation.GVTurnValve}", !AGVPump.Feedback);
 
-             }
 
-             if (_pumpname == "Both")
 
-             {
 
-                 InvokeClient.Instance.Service.DoOperation($"{BothPump.UniqueName}.{AITValveOperation.GVTurnValve}", !BothPump.Feedback);
 
-             }
 
-         }
 
-     }
 
- }
 
 
  |