Commit 793e72bbd4aa3a551dd4f498929c51426ba86076
1 parent
5a906424fc
Exists in
master
and in
6 other branches
1
Showing 1 changed file with 2 additions and 9 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
793e72b
... | ... | @@ -11,10 +11,6 @@ |
11 | 11 | import com.lyms.platform.common.utils.SystemConfig; |
12 | 12 | import com.lyms.platform.operate.web.request.*; |
13 | 13 | import com.lyms.platform.operate.web.result.*; |
14 | -import com.lyms.platform.operate.web.utils.FunvCommonUtil; | |
15 | -import com.lyms.platform.operate.web.utils.ResolveUtils; | |
16 | -import com.lyms.platform.operate.web.utils.UnitConstants; | |
17 | -import com.lyms.platform.operate.web.utils.UnitUtils; | |
18 | 14 | import com.lyms.platform.permission.model.Organization; |
19 | 15 | import com.lyms.platform.permission.model.Users; |
20 | 16 | import com.lyms.platform.permission.service.OrganizationService; |
... | ... | @@ -22,7 +18,6 @@ |
22 | 18 | import com.lyms.platform.pojo.*; |
23 | 19 | import com.lyms.platform.query.*; |
24 | 20 | import org.apache.commons.collections.CollectionUtils; |
25 | -import org.apache.commons.collections.MapUtils; | |
26 | 21 | import org.apache.commons.lang.StringUtils; |
27 | 22 | import org.apache.commons.lang.math.NumberUtils; |
28 | 23 | import org.springframework.beans.factory.annotation.Autowired; |
... | ... | @@ -71,8 +66,6 @@ |
71 | 66 | @Autowired |
72 | 67 | private PatientCheckTicketService patientCheckTicketService; |
73 | 68 | |
74 | - @Autowired | |
75 | - private AntenatalExaminationService antExService; | |
76 | 69 | /** |
77 | 70 | * 处理区域隐藏建档 |
78 | 71 | * |
79 | 72 | |
... | ... | @@ -173,11 +166,11 @@ |
173 | 166 | p1.setRiskFactorId(patients.getRiskFactorId()); |
174 | 167 | p1.setRiskLevelId(patients.getRiskLevelId()); |
175 | 168 | p1.setRiskScore(patients.getRiskScore()); |
176 | - p1.setNextCheckTime(com.lyms.platform.common.utils.StringUtils.isEmpty(nextCheckTime)?null:DateUtil.parseYMD(nextCheckTime)); | |
169 | + p1.setNextCheckTime(com.lyms.platform.common.utils.StringUtils.isEmpty(nextCheckTime) ? null : DateUtil.parseYMD(nextCheckTime)); | |
177 | 170 | p1.setFmDate(patients.getFmDate()); |
178 | 171 | p1.setServiceStatus(patients.getServiceStatus()); |
179 | 172 | p1.setLastCheckEmployeeId(patients.getLastCheckEmployeeId()); |
180 | - | |
173 | + | |
181 | 174 | patientsService.updatePatient(p1); |
182 | 175 | patientsService.updatePatientOneCol(masterPatients.getId(), com.lyms.platform.common.utils.StringUtils.isEmpty(nextCheckTime)?null:DateUtil.parseYMD(nextCheckTime)); |
183 | 176 | }else{ |