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