tangxu
2022-11-03 e50aa0608755bb4fbb2729912850b6ba4a5c75bc
Calculation/IStation.Calculation.Dispatch/custom/shys/station/泰和泵站/KeepStatus.cs
@@ -116,7 +116,7 @@
                    water_level,true ,
                    outlet_press,false ,
                    null, null,
                    allMachineList, null);
                    allMachineList, null, out error_info);
                return calc_pipe_helper.CalcKeepStatus(_open_machine_IdList);
            }
@@ -143,7 +143,7 @@
                        water_level,true ,
                        pipe1_TargetPess,false ,
                        null, null,
                        (from x in allMachineList where pipe1_machineIds.Contains(x.MachineID) select x).ToList(), null);
                        (from x in allMachineList where pipe1_machineIds.Contains(x.MachineID) select x).ToList(), null, out error_info);
                    return calc_pipe1_helper.CalcKeepStatus(_open_machine_IdList);
                }
@@ -154,7 +154,7 @@
                        water_level, true,
                        pipe2_TargetPess, false,
                        null, null,
                        (from x in allMachineList where pipe2_machineIds.Contains(x.MachineID) select x).ToList(), null);
                        (from x in allMachineList where pipe2_machineIds.Contains(x.MachineID) select x).ToList(), null, out error_info);
                    return calc_pipe2_helper.CalcKeepStatus(_open_machine_IdList);
                }
@@ -167,7 +167,7 @@
                    water_level, true,
                    pipe1_TargetPess, false,
                     null, null,
                    (from x in allMachineList where pipe1_machineIds.Contains(x.MachineID) select x).ToList(), null);
                    (from x in allMachineList where pipe1_machineIds.Contains(x.MachineID) select x).ToList(), null, out error_info);
                var pipe1_result = calc_pipe1_helper.CalcKeepStatus(_open_machine_IdList);
@@ -176,7 +176,7 @@
                    water_level,true ,
                    pipe2_TargetPess,false ,
                    null, null,
                    (from x in allMachineList where pipe2_machineIds.Contains(x.MachineID) select x).ToList(), null);
                    (from x in allMachineList where pipe2_machineIds.Contains(x.MachineID) select x).ToList(), null, out error_info);
                var pipe2_result = calc_pipe2_helper.CalcKeepStatus(_open_machine_IdList);