From 1333c2fe5ac18223079db4f32f0f0bc78f13d01b Mon Sep 17 00:00:00 2001 From: liquanyu Date: Wed, 14 Oct 2020 17:24:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BD=93=E9=87=8D=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../platform/operate/web/service/impl/PatientWeightServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java index 7fb064b..ac2aefb 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java @@ -1006,7 +1006,7 @@ public class PatientWeightServiceImpl extends BaseServiceImpl implements Patient //威海市妇幼热量单独计算 if ("2100001635".equals(hospitalId)) { kmap = getWhComputeKul(week, Double.parseDouble(patientWeight.getNowWeight()), Double.parseDouble(patientWeight.getBeforeWeight()), patientWeight.getBregmatic(), bmi); - }else if ("216".equals(hospitalId)) { //临西县热量单独计算 + }else if ("2100002043".equals(hospitalId)) { //临西县热量单独计算 kmap = getLxComputeKul(week, Double.parseDouble(patientWeight.getNowWeight()), Double.parseDouble(patientWeight.getBeforeWeight()), patientWeight.getBregmatic(), bmi); } else { @@ -1488,7 +1488,7 @@ public class PatientWeightServiceImpl extends BaseServiceImpl implements Patient String hospitalId = kmap.get("hospitalId"); String kcal = ""; //临西热量计算 - if (StringUtils.isNotEmpty(hospitalId) && "216".equals(hospitalId) && "1500".equals(kmap.get("kulStart"))) + if (StringUtils.isNotEmpty(hospitalId) && "2100002043".equals(hospitalId) && "1500".equals(kmap.get("kulStart"))) { kcal = Math.round(Double.parseDouble(kmap.get("kulStart")))+""; } -- 1.8.3.1