Commit 8c9db522ef0ba29954dd8bcc635f83239dcff057

Authored by gengxiaokai
1 parent 452fb4353a
Exists in master and in 1 other branch dev

分娩报告卡导出

Showing 1 changed file with 3 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/MatDeliverController.java View file @ 8c9db52
... ... @@ -483,6 +483,9 @@
483 483 if(0 == nu && !"-".equals(queryModel.getBabyWeight())){
484 484 weight = (Double.parseDouble(queryModel.getBabyWeight()) * 1000)+"";
485 485 }
  486 + else if(0 == nu && "-".equals(queryModel.getBabyWeight())){
  487 + weight = queryModel.getBabyWeight();
  488 + }
486 489 map.put("weight",weight);
487 490 //评分
488 491 map.put("apgarScorePf1",queryModel.getApgarScorePf1());