Browse Source

revise wago write AO,revise reservoir CMM UI visibility

chenzk 1 day ago
parent
commit
e6704b8066

+ 15 - 2
CyberX8_MainPages/ViewModels/StandardHotReservoirsViewModel.cs

@@ -54,11 +54,14 @@ namespace CyberX8_MainPages.ViewModels
         /// 是否为调速泵
         /// </summary>
         private bool _isRegulatePump;
-
         /// <summary>
         /// 泵速
         /// </summary>
         private int _pumpSpeed;
+        /// <summary>
+        /// 是否配备CMM
+        /// </summary>
+        private bool _isCMMConfig;
         private double _avgLevel;
         /// <summary>
         /// Module
@@ -558,9 +561,17 @@ namespace CyberX8_MainPages.ViewModels
             set { SetProperty(ref _recipeType, value); }
         }
         #endregion
-       
+
         #region CMM
         /// <summary>
+        /// 是否配备CMM
+        /// </summary>
+        public bool IsCMMConfig
+        {
+            get { return _isCMMConfig; }
+            set { SetProperty(ref _isCMMConfig, value); }
+        }
+        /// <summary>
         /// Flow High 状态(Warning:黄色,Error:红色)
         /// </summary>
         public string FlowHighStatus
@@ -779,6 +790,7 @@ namespace CyberX8_MainPages.ViewModels
             _rtDataKeys.Add($"{Module}.ReservoirUsage");
             _rtDataKeys.Add($"{Module}.PumpSpeed");
             _rtDataKeys.Add($"{Module}.IsRegulatePump");
+            _rtDataKeys.Add($"{Module}.IsCMMConfig");
             if (_timer == null)
             {
                 _timer = new DispatcherTimer();
@@ -987,6 +999,7 @@ namespace CyberX8_MainPages.ViewModels
                 _rtDataValueDic = QueryDataClient.Instance.Service.PollData(_rtDataKeys);
                 if (_rtDataValueDic != null)
                 {
+                    IsCMMConfig = CommonFunction.GetValue<bool>(_rtDataValueDic, $"{Module}.IsCMMConfig");
                     IsRegulatePump = CommonFunction.GetValue<bool>(_rtDataValueDic, $"{Module}.IsRegulatePump");
                     PumpSpeed = CommonFunction.GetValue<int>(_rtDataValueDic, $"{Module}.PumpSpeed");
                     ReservoirsPersistent = CommonFunction.GetValue<ReservoirsPersistentValue>(_rtDataValueDic, $"{Module}.PersistentValue");

+ 1 - 1
CyberX8_MainPages/Views/StandardHotReservoirsView.xaml

@@ -168,7 +168,7 @@ Visibility="{Binding IsError,Converter={StaticResource boolToVisibility2}}" Canv
                 <Grid Grid.Row="1" Grid.Column="3" Grid.RowSpan="2" Margin="10 10 0 0">
                     <ctrls:RecipeLoad HeadName="Res Recipe" IsEnabled="{Binding IsEnabled}" Name="recipeLoad"  Height="270"  VerticalAlignment="Top" Module="{Binding Module}" RecipeType="{Binding RecipeType}" SelectedRecipeNode="{Binding SelectedRecipeNode,Mode=TwoWay}"/>
                 </Grid>
-                <GroupBox Header="Chemical Maintenance Module(CMM)" Margin="10,22,0,-28" Grid.Row="3" Grid.Column="3" Grid.RowSpan="4">
+                <GroupBox Header="Chemical Maintenance Module(CMM)" Margin="10,22,0,-28" Grid.Row="3" Grid.Column="3" Grid.RowSpan="4" Visibility="{Binding IsCMMConfig,Converter={StaticResource boolToVisibility2}}">
                     <Grid>
                         <Grid.ColumnDefinitions>
                             <ColumnDefinition Width="34*"/>

+ 6 - 0
CyberX8_RT/Devices/Reservoir/StandardHotReservoirDevice.cs

@@ -218,6 +218,10 @@ namespace CyberX8_RT.Devices.Reservoir
         /// 泵速Helper
         /// </summary>
         private ReservoirPumpSpeedHelper _pumpSpeedHelper;
+        /// <summary>
+        /// 是否配备CMM
+        /// </summary>
+        private bool _isCMMConfig = false;
         #endregion
 
         #region 属性
@@ -640,6 +644,7 @@ namespace CyberX8_RT.Devices.Reservoir
                 {
                     _pumpSpeedHelper = new ReservoirPumpSpeedHelper(Module, this);
                 }
+                _isCMMConfig = !string.IsNullOrEmpty(reservoirItem.CMMType);
             }
             _isCAFlowRateWARN = new List<bool>(new bool[_metalDevices.Count]);
             //DosingSystem数据初始化            
@@ -694,6 +699,7 @@ namespace CyberX8_RT.Devices.Reservoir
             DATA.Subscribe($"{Module}.HedPowerOn", () => _reservoirData.HedPowerOn, SubscriptionAttribute.FLAG.IgnoreSaveDB);
             DATA.Subscribe($"{Module}.IsRegulatePump", () => _isRegulatePump, SubscriptionAttribute.FLAG.IgnoreSaveDB);
             DATA.Subscribe($"{Module}.PumpSpeed", () => _regulatePumpSpeed, SubscriptionAttribute.FLAG.IgnoreSaveDB);
+            DATA.Subscribe($"{Module}.IsCMMConfig", () => _isCMMConfig, SubscriptionAttribute.FLAG.IgnoreSaveDB);
         }
         /// <summary>
         /// 初始化操作

+ 1 - 0
Framework/Common/Device/Wago/WagoControllerCfgManager.cs

@@ -544,6 +544,7 @@ namespace MECF.Framework.Common.Device.Wago
                         if (wagoAO.DataType == "short")
                         {
                             writeByts = BitConverter.GetBytes((short)var.Item2);
+                            Array.Reverse(writeByts);
                         }
                         else
                         {