Commit 00dcf2d0bcfcbcbe217e591a5a494127a5fd2dee

Authored by liquanyu
1 parent dc68ec5040

统计不要绿色

Showing 1 changed file with 7 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/RiskReportFacade.java View file @ 00dcf2d
... ... @@ -112,12 +112,16 @@
112 112 ExecutorService pool = Executors.newFixedThreadPool(riskLevelConfig.size());
113 113 for(BasicConfig levelConfig : riskLevelConfig)
114 114 {
115   - Callable c = new HiskCountTask( basicConfigService,
  115 + if ("e637b361-99cf-41eb-84f2-f0dab596e928".equals(levelConfig.getId()))
  116 + {
  117 + continue;
  118 + }
  119 + Callable c = new HiskCountTask( basicConfigService,
116 120 patientsService, levelConfig,
117 121 patientsQuery,
118 122 allPatientCount);
119   - Future f = pool.submit(c);
120   - futures.add(f);
  123 + Future f = pool.submit(c);
  124 + futures.add(f);
121 125 }
122 126 // 关闭线程池
123 127 pool.shutdown();