|
|
@ -144,7 +144,7 @@ public class IndexCalculateServiceImpl implements IndexCalculateService { |
|
|
|
//计算街道
|
|
|
|
start = System.currentTimeMillis(); |
|
|
|
try { |
|
|
|
flag = indexCalculateStreetService.calStreetAll(customerId, formDTO.getMonthId()); |
|
|
|
flag = indexCalculateStreetService.calStreetAll(formDTO); |
|
|
|
log.info("客户Id:{}【街道相关】计算完毕,总耗时:{}秒,result:{}", customerId, (System.currentTimeMillis() - start) / 1000, flag); |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("indexCalculate calStreetAll exception", e); |
|
|
@ -162,7 +162,7 @@ public class IndexCalculateServiceImpl implements IndexCalculateService { |
|
|
|
//计算全区
|
|
|
|
start = System.currentTimeMillis(); |
|
|
|
try { |
|
|
|
flag = indexCalculateDistrictService.calDistrictAll(customerId, formDTO.getMonthId()); |
|
|
|
flag = indexCalculateDistrictService.calDistrictAll(formDTO); |
|
|
|
log.info("客户Id:{}【全区相关】计算完毕,总耗时:{}秒,result:{}", customerId, (System.currentTimeMillis() - start) / 1000, flag); |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("indexCalculate calDistrictAll exception", e); |
|
|
|