Commit 9c4d113e598d0b9dd7e51e7f20c5337213baccec
1 parent
f407a3a230
Exists in
master
and in
6 other branches
bbbbbb
Showing 1 changed file with 2 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java
View file @
9c4d113
... | ... | @@ -694,7 +694,8 @@ |
694 | 694 | for (Map tireDatum : tireData) { |
695 | 695 | fetalPosition = !tireDatum.containsKey("fetalPosition") ? "--" : fetalPosition.length() > 0 ? fetalPosition + "/" + FetalPositionEnums.getTitle2((String) tireDatum.get("fetalPosition")) : FetalPositionEnums.getTitle2((String) tireDatum.get("fetalPosition")); |
696 | 696 | heartRate = !tireDatum.containsKey("heartRate") ? "--" : heartRate.length() > 0 ? heartRate + "/" + tireDatum.get("heartRate").toString().replaceAll("\\.0", "") : tireDatum.get("heartRate").toString().replaceAll("\\.0", ""); |
697 | - fetalPresentation = !tireDatum.containsKey("fetalPresentation") ? "--" : fetalPresentation.length() > 0 ? fetalPresentation + "/" + FetalEnums.getTitle2((String) tireDatum.get("fetalPresentation")) : FetalEnums.getTitle2((String) tireDatum.get("fetalPresentation")); | |
697 | + fetalPresentation = !tireDatum.containsKey("fetalPresentation") ? fetalPresentation.length() < 0 ? "--" : fetalPresentation + "/--": fetalPresentation.length() > 0 ? | |
698 | + fetalPresentation + "/" + FetalEnums.getTitle2((String) tireDatum.get("fetalPresentation")) : FetalEnums.getTitle2((String) tireDatum.get("fetalPresentation")); | |
698 | 699 | } |
699 | 700 | } catch (Exception e) { |
700 | 701 | fetalPosition = "--"; |