Commit 8e37255b26190e08b0cbfce0708422fa76673afc
1 parent
4144355560
Exists in
master
and in
6 other branches
体重修改
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java
View file @
8e37255
... | ... | @@ -1006,7 +1006,7 @@ |
1006 | 1006 | //威海市妇幼热量单独计算 |
1007 | 1007 | if ("2100001635".equals(hospitalId)) { |
1008 | 1008 | kmap = getWhComputeKul(week, Double.parseDouble(patientWeight.getNowWeight()), Double.parseDouble(patientWeight.getBeforeWeight()), patientWeight.getBregmatic(), bmi); |
1009 | - }else if ("2100002043".equals(hospitalId)) { //临西县热量单独计算 | |
1009 | + }else if ("216".equals(hospitalId)) { //临西县热量单独计算 | |
1010 | 1010 | kmap = getLxComputeKul(week, Double.parseDouble(patientWeight.getBeforeHeight()), Double.parseDouble(patientWeight.getNowWeight()), Double.parseDouble(patientWeight.getBeforeWeight()), patientWeight.getBregmatic(), bmi); |
1011 | 1011 | } |
1012 | 1012 | else { |
... | ... | @@ -1488,7 +1488,7 @@ |
1488 | 1488 | String hospitalId = kmap.get("hospitalId"); |
1489 | 1489 | String kcal = ""; |
1490 | 1490 | //临西热量计算 |
1491 | - if (StringUtils.isNotEmpty(hospitalId) && "2100002043".equals(hospitalId) && "1500".equals(kmap.get("kulStart"))) | |
1491 | + if (StringUtils.isNotEmpty(hospitalId) && "216".equals(hospitalId)) | |
1492 | 1492 | { |
1493 | 1493 | kcal = Math.round(Double.parseDouble(kmap.get("kulStart")))+""; |
1494 | 1494 | } |