From 930ab08e9d754bd38fd8053bbb5982186f7e9269 Mon Sep 17 00:00:00 2001 From: yangfei Date: Wed, 21 Jun 2017 16:32:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E5=8F=B7bug=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/lyms/platform/operate/web/facade/ViewFacade.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java index 112d68a..10a7e32 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java @@ -1215,11 +1215,11 @@ public class ViewFacade { } if (placenta.get("gjkd") != null) { - placetaMap.put("gjkd", placenta.get("gjkd")); + placetaMap.put("gjkd", UnitUtils.unitSplice(placenta.get("gjkd"), UnitConstants.CM)); } if (placenta.get("gjrs") != null) { - placetaMap.put("gjrs", placenta.get("gjrs")); + placetaMap.put("gjrs", UnitUtils.unitSplice(placenta.get("gjrs"), UnitConstants.BF)); } if (StringUtils.isNotEmpty(placenta.get("gjwzOther"))) { @@ -1231,7 +1231,7 @@ public class ViewFacade { } if (placenta.get("yszs") != null) { - placetaMap.put("yszs", placenta.get("yszs")); + placetaMap.put("yszs", UnitUtils.unitSplice(placenta.get("yszs"), UnitConstants.CM)); } } } -- 1.8.3.1