Commit e84b393de03a8145cfdf9de26419d81cc221d66c

Authored by jiangjiazhi
1 parent 1be9777946

增加统计

Showing 1 changed file with 3 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java View file @ e84b393
... ... @@ -481,7 +481,7 @@
481 481 if (end > patientses.size()) {
482 482 end = patientses.size();
483 483 }
484   - listFuture.add(threadPoolExecutor.submit(new QuanChanPatientWorker(patientses.subList(i, end), hospital, usersService, postReviewService, matDeliverService, patientsService)));
  484 + listFuture.add(threadPoolExecutor.submit(new QuanChanPatientWorker(patientses.subList(i, end), hospital, usersService, postReviewService, matDeliverService, patientsService,organizationService,basicConfigService)));
485 485 }
486 486 for (Future f : listFuture) {
487 487 try {
... ... @@ -504,7 +504,7 @@
504 504 if (end > patientses.size()) {
505 505 end = patientses.size();
506 506 }
507   - listFuture.add(threadPoolExecutor.submit(new QuanPatientWorker(patientses.subList(i, end), usersService, hospital, antExService, basicConfigService, patientsService)));
  507 + listFuture.add(threadPoolExecutor.submit(new QuanPatientWorker(patientses.subList(i, end), usersService, hospital, antExService, basicConfigService, patientsService,organizationService)));
508 508 }
509 509 for (Future f : listFuture) {
510 510 try {
... ... @@ -532,7 +532,7 @@
532 532 if (end > patientses.size()) {
533 533 end = patientses.size();
534 534 }
535   - listFuture.add(threadPoolExecutor.submit(new WorkHR(patientses.subList(i, end), usersService, hospital, basicConfigService, antExService, patientsService)));
  535 + listFuture.add(threadPoolExecutor.submit(new WorkHR(patientses.subList(i, end), usersService, hospital, basicConfigService, antExService, patientsService,organizationService)));
536 536 }
537 537 for (Future f : listFuture) {
538 538 try {