Commit 1027486867d110a36627676abb58ca8804f65ecc

Authored by liquanyu
1 parent 93e91c2194

update

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 @ 1027486
... ... @@ -377,8 +377,8 @@
377 377  
378 378 setReport(map, weights, patientWeight.getBeforeWeight(), patientWeight.getBmi(), patientWeight.getDayWeights(), patientWeight.getBregmatic());
379 379  
380   - String bregmaticOther = "";
381   - if (StringUtils.isEmpty(patientWeight.getBregmaticOther()) || "null".equals(patientWeight.getBregmaticOther())) {
  380 + String bregmaticOther = patientWeight.getBregmaticOther();
  381 + if (StringUtils.isEmpty(bregmaticOther) || "null".equals(bregmaticOther)) {
382 382 bregmaticOther = "";
383 383 }
384 384 map.put("bregmaticOther",bregmaticOther);