Commit 9c2b53d7 authored by 潘栩锋's avatar 潘栩锋 🚴

1. 把混料的 MixSet,MixPSet 也加入到更新计划0,为了解决 MixPSet 与 HMI 显示不一致问题

parent eed14f80
...@@ -47,12 +47,12 @@ namespace FLY.Weight.UI.Client ...@@ -47,12 +47,12 @@ namespace FLY.Weight.UI.Client
for (int j = 0; j < weight.BinCnt; j++) for (int j = 0; j < weight.BinCnt; j++)
{ {
int no = j + 1; int no = j + 1;
props.Add("MixPSet_" + no); //props.Add("MixPSet_" + no);
props.Add("MixPDisp_" + no); //props.Add("MixPDisp_" + no);
props.Add("MixCumPercent_" + no); props.Add("MixCumPercent_" + no);
props.Add("MixSet_" + no); //props.Add("MixSet_" + no);
props.Add("MixDisp_" + no); //props.Add("MixDisp_" + no);
props.Add("MixCum_" + no); props.Add("MixCum_" + no);
} }
setPlan = new SetPLCUpdatePlan( setPlan = new SetPLCUpdatePlan(
......
...@@ -127,6 +127,8 @@ namespace FLY.Weight.Server ...@@ -127,6 +127,8 @@ namespace FLY.Weight.Server
for (int j = 0; j < Items[i].BinCnt; j++) for (int j = 0; j < Items[i].BinCnt; j++)
{ {
int no = j + 1; int no = j + 1;
props.Add($"MixSet_{no}");
props.Add($"MixPSet_{no}");
props.Add($"MixDisp_{no}"); props.Add($"MixDisp_{no}");
props.Add($"MixPDisp_{no}"); props.Add($"MixPDisp_{no}");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment