Commit e05c25fa95300dada77e5d8b90dbe673a8d26b70
1 parent
f5c7b7a05e
Exists in
master
and in
6 other branches
复诊查看
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
e05c25f
... | ... | @@ -1975,7 +1975,7 @@ |
1975 | 1975 | for (Object temp : data.getTireData()) { |
1976 | 1976 | Map<String, Object> tire = (Map<String, Object>) temp; |
1977 | 1977 | if (tire != null) { |
1978 | - String heartRate = tire.get("heartRate") + ""; | |
1978 | + String heartRate = tire.get("heartRate") == null ? "" : String.valueOf(tire.get("heartRate")); | |
1979 | 1979 | String fetalPosition = tire.get("fetalPosition") + ""; |
1980 | 1980 | String fetalPresentation = tire.get("fetalPresentation") + ""; |
1981 | 1981 | String join = tire.get("join") + ""; |