Commit d72fd734bb613786553c684742d6450f1f2c9457

Authored by jiangjiazhi
1 parent 5784b0dc67

1

Showing 1 changed file with 5 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java View file @ d72fd73
... ... @@ -177,6 +177,8 @@
177 177 p1.setFmDate(patients.getFmDate());
178 178 p1.setServiceStatus(patients.getServiceStatus());
179 179 p1.setLastCheckEmployeeId(patients.getLastCheckEmployeeId());
  180 + p1.setBookbuildingDoctor(patients.getBookbuildingDoctor());
  181 + p1.setBookbuildingDate(patients.getBookbuildingDate());
180 182 patientsService.updatePatient(p1);
181 183 patientsService.updatePatientOneCol(masterPatients.getId(), com.lyms.platform.common.utils.StringUtils.isEmpty(nextCheckTime)?null:DateUtil.parseYMD(nextCheckTime));
182 184 }else{
183 185  
... ... @@ -185,12 +187,14 @@
185 187 patientsQuery1.setYn(YnEnums.YES.getId());
186 188 List<Patients> list= patientsService.queryPatient(patientsQuery1);
187 189 if(CollectionUtils.isNotEmpty(list)){
188   - for(Patients p:list){
  190 + for (Patients p : list) {
189 191 Patients p1 = new Patients();
190 192 p1.setId(p.getId());
191 193 p1.setModified(patients.getModified());
192 194 p1.setoRiskFactor(patients.getoRiskFactor());
193 195 p1.setLastCTime(patients.getLastCTime());
  196 + p1.setBookbuildingDoctor(patients.getBookbuildingDoctor());
  197 + p1.setBookbuildingDate(patients.getBookbuildingDate());
194 198 p1.setPostViewTimes(patients.getPostViewTimes());
195 199 p1.setLastRhTime(patients.getLastRhTime());
196 200 p1.setRiskFactorId(patients.getRiskFactorId());