Commit 9619690544e9417bf7342a40f8fa21360e277e54

Authored by liquanyu
1 parent e673c0331a

update

Showing 1 changed file with 4 additions and 5 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientSyncMysqlFacade.java View file @ 9619690
... ... @@ -1264,10 +1264,7 @@
1264 1264  
1265 1265 public void syncLpData()
1266 1266 {
1267   - System.out.println("syncLpData start ........");
1268   -
1269 1267 List<String> hospitalIds = Arrays.asList("2100001377","2100001452");//滦平妇幼和围场满族蒙古族自治县妇幼保健院
1270   -
1271 1268 Date startDate = DateUtil.parseYMDHMS(DateUtil.getyyyy_MM_dd(new Date()) + " 00:00:00");
1272 1269 Date endDate = DateUtil.addDay(startDate, 1);
1273 1270 for (String hid : hospitalIds)
... ... @@ -1279,8 +1276,10 @@
1279 1276 syncBaby(startDate, endDate,hid);
1280 1277 syncBabyCheck(startDate, endDate,hid);
1281 1278 }
1282   -
1283   - System.out.println("syncLpData end ........");
  1279 + syncPatientsToMysql(startDate,endDate);
  1280 + syncAntexchuToMysql(startDate, endDate);
  1281 + syncAntexToMysql(startDate, endDate);
  1282 + syncMatdeliverToMysql(startDate,endDate);
1284 1283 }
1285 1284  
1286 1285