Commit 0cd7f6bb609bea0ee03a731dc4a5a0e920cbf53e

Authored by yangfei
1 parent ab1b11f91c

产检增加字段

Showing 1 changed file with 39 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java View file @ 0cd7f6b
... ... @@ -528,9 +528,47 @@
528 528 Integer a = (int) Double.parseDouble(heartRate);
529 529 heartRate = String.valueOf(a);
530 530 }
531   -
532 531 fetalPresentation += placenta.get("fetalPresentation") == null ? "" : placenta.get("fetalPresentation");
533 532 join = placenta.get("join");
  533 +
  534 + if(StringUtils.isNotEmpty(placenta.get("xlwz"))){
  535 + placetaMap.put("xlwz", GongJingEnums.getXLWeiZhiNameById(placenta.get("xlwz")));
  536 + }
  537 + if(StringUtils.isNotEmpty(placenta.get("gjwz"))){
  538 + placetaMap.put("gjwz", GongJingEnums.getWeiZhiNameById(placenta.get("gjwz")));
  539 + }
  540 +
  541 + if(StringUtils.isNotEmpty(placenta.get("gjyd"))){
  542 + placetaMap.put("gjyd", GongJingEnums.getYinDuNameById(placenta.get("gjyd")));
  543 + }
  544 +
  545 + if(StringUtils.isNotEmpty(placenta.get("ydjc"))){
  546 + placetaMap.put("tm", TaiShuEnums.getTmNameById(placenta.get("ydjc")));
  547 + }
  548 +
  549 + if(StringUtils.isNotEmpty(placenta.get("ydjc"))){
  550 + placetaMap.put("ydjc", GongJingEnums.getYDJianCeNameById(placenta.get("ydjc")));
  551 + }
  552 +
  553 + if(placenta.get("gjkd")!=null){
  554 + placetaMap.put("gjkd", placenta.get("gjkd"));
  555 + }
  556 +
  557 + if(placenta.get("gjrs")!=null){
  558 + placetaMap.put("gjrs", placenta.get("gjrs"));
  559 + }
  560 +
  561 + if(StringUtils.isNotEmpty(placenta.get("gjwzOther"))){
  562 + placetaMap.put("gjwzOther", placenta.get("gjwzOther "));
  563 + }
  564 +
  565 + if(StringUtils.isNotEmpty(placenta.get("gjydOther"))){
  566 + placetaMap.put("gjydOther", placenta.get("gjydOther"));
  567 + }
  568 +
  569 + if(placenta.get("yszs")!=null){
  570 + placetaMap.put("yszs", placenta.get("yszs"));
  571 + }
534 572 }
535 573 }
536 574