|
@@ -576,6 +576,9 @@ public class RWDLoadUtil {
|
|
|
JSONObject sceneItem = (JSONObject) sceneArray.get(i);
|
|
|
String ibmsSceneCode = (String) sceneItem.get("id");
|
|
|
String name = (String) sceneItem.get("名称");
|
|
|
+ if (Constant.subsystem_connect_status_excludeMap.containsKey(ibmsSceneCode)) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
if (!subsystem_connect_statusMap.containsKey(ibmsSceneCode)) {
|
|
|
SceneDataObject sdoInner = new SceneDataObject(null, null, null, null, null, null, null);
|
|
|
{
|
|
@@ -972,7 +975,7 @@ public class RWDLoadUtil {
|
|
|
pointListItem.put("equipTypeName", equipTypeName);
|
|
|
pointListItem.put("infoCode", infoCode);
|
|
|
pointListItem.put("infoType", infoType);
|
|
|
- pointListItem.put("isVisible", (infoType != null && infoType.equals("运行参数")||infoType.equals("设定参数")) ? true : false);
|
|
|
+ pointListItem.put("isVisible", (infoType != null && infoType.equals("运行参数") || infoType.equals("设定参数")) ? true : false);
|
|
|
pointListItem.put("isBatchControlParam", (isBatchControlParam != null && isBatchControlParam.equals("Y")) ? true : false);
|
|
|
pointListItem.put("isKeyPoint", (isKeyPoint != null && isKeyPoint.equals("Y")) ? true : false);
|
|
|
InfoPointListArray.add(pointListItem);
|