Commit c4cbc1ad9d2de6cfbdc69a28f3a67beb83c935bf
1 parent
baa45f7784
Exists in
master
and in
6 other branches
妇女健康管理-在婚前检查用手签板签一次名后,签名同步到孕前优生页面的知情同意书的签名处(医生和患者)
Showing 1 changed file with 8 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PreEugebicsServiceImpl.java
View file @
c4cbc1a
... | ... | @@ -757,6 +757,10 @@ |
757 | 757 | map.put("wifeBaseInfo",wifeBaseInfo); |
758 | 758 | //写入体格检查map |
759 | 759 | map.put("wifePhysiqueCheck",wifePhysiqueCheck); |
760 | + //用户签名(女) | |
761 | + map.put("userSignWoman",premaritalCheckup.getUserSign()); | |
762 | + //婚检医生签名(女)-使用 婚前指导签名 数据 | |
763 | + map.put("guidSignWoman",premaritalCheckup.getGuidSign()); | |
760 | 764 | } |
761 | 765 | //男性档案同步 |
762 | 766 | PremaritalCheckup premaritalCheckup2=mongoTemplate.findOne(Query.query(Criteria.where("certificateNum").is(cardNo)), PremaritalCheckup.class); |
... | ... | @@ -775,6 +779,10 @@ |
775 | 779 | map.put("husbandCxNum",premaritalCheckup2.getCxNum()); |
776 | 780 | //写入体格检查map |
777 | 781 | map.put("husbandPhysiqueCheck",husbandPhysiqueCheck); |
782 | + //用户签名(男) | |
783 | + map.put("userSignMan",premaritalCheckup2.getUserSign()); | |
784 | + //婚检医生签名(男)-使用 婚前指导签名 数据 | |
785 | + map.put("guidSignMan",premaritalCheckup.getGuidSign()); | |
778 | 786 | } |
779 | 787 | } |
780 | 788 |