From 469c03e51e9aea6f3982986ed72b7ae4102ed485 Mon Sep 17 00:00:00 2001 From: hujiaqi Date: Fri, 6 Jan 2017 14:52:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=A7=E5=A6=87=E5=BB=BA=E6=A1=A3=E6=88=96?= =?UTF-8?q?=E8=80=85=E5=AD=95=E6=94=B9=E4=BA=A7=E5=BB=BA=E6=A1=A3=E9=83=BD?= =?UTF-8?q?=E5=B1=9E=E4=BA=8E=E8=87=AA=E5=8A=A8=E5=88=86=E5=A8=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/lyms/platform/operate/web/facade/BookbuildingFacade.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java index 7d8c45c..b544814 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java @@ -217,6 +217,9 @@ public class BookbuildingFacade { patient.setDueStatus(0); //1孕妇 3 产妇 patient.setType(type); + if(type==3){ + patient.setIsAutoFm(YnEnums.YES.getId()); + } patient.setBuildType(buildType); if (type == ServiceObjEnums.CHANOBJ.getId() && date != null) { patient.setFmDate(date); @@ -496,6 +499,9 @@ public class BookbuildingFacade { } patient.setOperator(userId); + if(patient.getType()==3){ + patient.setIsAutoFm(YnEnums.YES.getId()); + } yunBookbuildingService.updatePregnant(patient, id); //如果当前是建档医院,那么需要修改其他非建档医院的数据 if (autoMatchFacade.checkBStatus(userId)) { -- 1.8.3.1