Commit ce7074f65cd7d4284c38750697961f7359fc1594

Authored by litao@lymsh.com
1 parent acfcad37ce

改app的曲线返回

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 @ ce7074f
... ... @@ -290,8 +290,8 @@
290 290 patientWeight.setHospitalId(patients.getHospitalId());
291 291 if(StringUtils.isNotBlank(patientWeight.getPatientId()) && StringUtils.isNotEmpty(patientWeight.getNowWeight())) {
292 292 weights.put(DateUtil.getWeek(patients.getLastMenses(), new Date()), nowWeight);
293   - patientWeight.setWeights(weights);
294 293 }
  294 + patientWeight.setWeights(weights);
295 295 if(StringUtils.isNotBlank(patientWeight.getNowWeight()) && patientWeight.getBeforeHeight() != null) {
296 296 patientWeight.setBmi(getBmi(patientWeight.getNowWeight(), patientWeight.getBeforeHeight()));
297 297 }