Commit 759d31c9f2cbc3082fe702ecb7cc88b84785c506

Authored by jiangjiazhi
1 parent f4531d81db

座机号 替换的问题

Showing 3 changed files with 8 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java View file @ 759d31c
... ... @@ -224,7 +224,6 @@
224 224 if (ServiceStatusEnums.STANDARD_ALL.getId() != Integer.valueOf(riskPatientsQueryRequest.getServiceStatus()) && ServiceStatusEnums.ADD_ALL.getId() != Integer.valueOf(riskPatientsQueryRequest.getServiceStatus())) {
225 225 patientsQuery.setServiceStatus(Integer.valueOf(riskPatientsQueryRequest.getServiceStatus()));
226 226 }
227   -
228 227 }
229 228  
230 229 //最后一次检查时间
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/QuanPatientWorker.java View file @ 759d31c
... ... @@ -166,6 +166,10 @@
166 166 quanPatientsResult.setCheckDoctor(list.get(0).getProdDoctor());
167 167 }
168 168 }
  169 + Patients patients1=new Patients();
  170 + patients1.setId(patients.getId());
  171 + patients1.setLastCTime(list.get(0).getNextCheckTime());
  172 + patientsService.updatePatient(patients1);
169 173 }
170 174 }
171 175 stopWatch.stop();
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/WorkHR.java View file @ 759d31c
... ... @@ -153,6 +153,10 @@
153 153 riskPatientsResult.setCheckDoctor(list.get(0).getProdDoctor());
154 154 }
155 155 }
  156 + Patients patients1=new Patients();
  157 + patients1.setId(patients.getId());
  158 + patients1.setLastCTime(list.get(0).getNextCheckTime());
  159 + patientsService.updatePatient(patients1);
156 160 }
157 161 }
158 162 stopWatch.stop();