|
@ -147,12 +147,11 @@ public class IndexCalculateController { |
|
|
long start = System.currentTimeMillis(); |
|
|
long start = System.currentTimeMillis(); |
|
|
Boolean aBoolean = indexCalculateService.indexCalculate(formDTO); |
|
|
Boolean aBoolean = indexCalculateService.indexCalculate(formDTO); |
|
|
if (aBoolean) { |
|
|
if (aBoolean) { |
|
|
log.error("客户Id:{},monthId:{},全部指标计算完成,结果:{},总耗时:{}秒,customerAreaCode:{}", |
|
|
log.error("客户Id:{},monthId:{},全部指标计算完成,结果:{},总耗时:{}秒", |
|
|
formDTO.getCustomerId(), |
|
|
formDTO.getCustomerId(), |
|
|
formDTO.getMonthId(), |
|
|
formDTO.getMonthId(), |
|
|
aBoolean, |
|
|
aBoolean, |
|
|
(System.currentTimeMillis() - start) / 1000, |
|
|
(System.currentTimeMillis() - start) / 1000); |
|
|
formDTO.getCustomerAreaCode()); |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
redisUtils.delete(RedisKeys.getCustomerStatsCalFlag(formDTO.getCustomerId())); |
|
|
redisUtils.delete(RedisKeys.getCustomerStatsCalFlag(formDTO.getCustomerId())); |
|
|