From 4e9f921f596078d5d7002308342bed58480444e9 Mon Sep 17 00:00:00 2001 From: jiangjiazhi Date: Mon, 9 Jan 2017 10:42:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E5=A8=A9=E4=BD=9C=E5=BA=9F=E4=BA=A7?= =?UTF-8?q?=E6=A3=80=E5=8A=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../platform/operate/web/facade/AntenatalExaminationFacade.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java index fc4a3a4..8d9acd4 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java @@ -186,6 +186,10 @@ public class AntenatalExaminationFacade { } model.setParentId(parentId); antExAddRequest.setParentId(parentId); + Patients p=patientsService.findOnePatientById(parentId); + + //加入产筛 + patientsService.validata(p); } @@ -343,6 +347,11 @@ public class AntenatalExaminationFacade { antExChuModel.setParentId(parentId); excAddRequest.setParentId(parentId); + Patients p=patientsService.findOnePatientById(parentId); + + //加入产筛 + patientsService.validata(p); + } antExChuModel.setOperator(userId); if (StringUtils.isNotEmpty(antExChuModel.getId()) && StringUtils.isNotEmpty(antExChuModel.getParentId())) { -- 1.8.3.1