Commit b62aceb5379b8d34bf1b93544d3bbc475c42ae57
1 parent
dbbf4e62c9
Exists in
master
and in
6 other branches
大同颜色
Showing 1 changed file with 9 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BasicConfigFacade.java
View file @
b62aceb
| ... | ... | @@ -65,7 +65,10 @@ |
| 65 | 65 | /** |
| 66 | 66 | * 大同单独添加高位因素==高血压(需要药物治疗) |
| 67 | 67 | */ |
| 68 | - if (!orgId.equalsIgnoreCase("2100002419")) { | |
| 68 | + if (StringUtils.isEmpty(orgId) || !orgId.equalsIgnoreCase("2100002419")) { | |
| 69 | + System.out.println("+++++++++++++++orgId++++++++++++++++++++"); | |
| 70 | + System.out.println(orgId); | |
| 71 | + System.out.println("+++++++++++++++orgId++++++++++++++++++++"); | |
| 69 | 72 | Iterator<BasicConfig> basicConfigIterator = basicConfigList.iterator(); |
| 70 | 73 | while (basicConfigIterator.hasNext()) { |
| 71 | 74 | BasicConfig basicConfig = basicConfigIterator.next(); |
| ... | ... | @@ -74,7 +77,11 @@ |
| 74 | 77 | } |
| 75 | 78 | } |
| 76 | 79 | } |
| 77 | - if (orgId.equalsIgnoreCase("2100002419")) { | |
| 80 | + | |
| 81 | + if (StringUtils.isNotEmpty(orgId)&&orgId.equalsIgnoreCase("2100002419")) { | |
| 82 | + System.out.println("+++++++++++++++orgId++++++++++++++++++++"); | |
| 83 | + System.out.println(orgId); | |
| 84 | + System.out.println("+++++++++++++++orgId++++++++++++++++++++"); | |
| 78 | 85 | Iterator<BasicConfig> basicConfigIterator = basicConfigList.iterator(); |
| 79 | 86 | while (basicConfigIterator.hasNext()) { |
| 80 | 87 | BasicConfig basicConfig = basicConfigIterator.next(); |