Commit 930effaa3ee9cba1d6ec913cd077677f8541d0e9

Authored by [wangbo]
1 parent c75d295e35

修改生重报告身高单位

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java View file @ 930effa
... ... @@ -659,7 +659,7 @@
659 659 }
660 660 map.put("week", week);
661 661 map.put("bregmatic", StringUtils.isNotEmpty(patientWeight.getBregmatic()) ? patientWeight.getBregmatic() : "1");
662   - map.put("height", StringUtils.isEmpty(patientWeight.getBeforeHeight()) ? "" : MathUtil.doubleFormat(Double.parseDouble(patientWeight.getBeforeHeight()) / 100) + " 米");
  662 + map.put("height", StringUtils.isEmpty(patientWeight.getBeforeHeight()) ? "" : patientWeight.getBeforeHeight() + " cm");
663 663 map.put("beforeWeight", StringUtils.isEmpty(patientWeight.getBeforeWeight()) ? "" : patientWeight.getBeforeWeight() + " 公斤");
664 664 map.put("bmi", patientWeight.getBmi());
665 665 map.put("nowWeight", patientWeight.getNowWeight() + " 公斤");