|
|
@ -91,7 +91,7 @@ public class IndexCalculateServiceImpl implements IndexCalculateService { |
|
|
|
private Boolean calulateCustomerIndexScore(CalculateCommonFormDTO formDTO) { |
|
|
|
try { |
|
|
|
String customerId = formDTO.getCustomerId(); |
|
|
|
Boolean flag; |
|
|
|
Boolean flag = false; |
|
|
|
long start = System.currentTimeMillis(); |
|
|
|
try { |
|
|
|
//校验是否含有组织数据
|
|
|
@ -107,7 +107,6 @@ public class IndexCalculateServiceImpl implements IndexCalculateService { |
|
|
|
log.info("客户Id:{}【党员相关】计算完毕,总耗时:{}秒,result:{}", customerId, (System.currentTimeMillis() - start) / 1000, flag); |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("indexCalculate cpcIndexCalculate exception", e); |
|
|
|
throw new RenException("indexCalculate cpcIndexCalculate exception", e); |
|
|
|
} |
|
|
|
//测试用
|
|
|
|
|
|
|
@ -118,7 +117,6 @@ public class IndexCalculateServiceImpl implements IndexCalculateService { |
|
|
|
log.info("客户Id:{}【网格相关】计算完毕,总耗时:{}秒,result:{},result:{}", customerId, (System.currentTimeMillis() - start) / 1000, flag); |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("indexCalculate calculateGridCorreLation exception", e); |
|
|
|
throw new RenException("indexCalculate calculateGridCorreLation exception", e); |
|
|
|
} |
|
|
|
//计算社区
|
|
|
|
start = System.currentTimeMillis(); |
|
|
@ -127,7 +125,6 @@ public class IndexCalculateServiceImpl implements IndexCalculateService { |
|
|
|
log.info("客户Id:{}【社区相关】计算完毕,总耗时:{}秒,result:{},result:{}", customerId, (System.currentTimeMillis() - start) / 1000, flag); |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("indexCalculate calCommunityAll exception", e); |
|
|
|
throw new RenException("indexCalculate calAll exception", e); |
|
|
|
} |
|
|
|
|
|
|
|
//计算街道
|
|
|
@ -137,7 +134,6 @@ public class IndexCalculateServiceImpl implements IndexCalculateService { |
|
|
|
log.info("客户Id:{}【街道相关】计算完毕,总耗时:{}秒,result:{}", customerId, (System.currentTimeMillis() - start) / 1000, flag); |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("indexCalculate calStreetAll exception", e); |
|
|
|
throw new RenException("indexCalculate calStreetAll exception", e); |
|
|
|
} |
|
|
|
|
|
|
|
//计算区直属
|
|
|
@ -147,7 +143,6 @@ public class IndexCalculateServiceImpl implements IndexCalculateService { |
|
|
|
log.info("客户Id:{}【区直部门】计算完毕,总耗时:{}秒,result:{}", customerId, (System.currentTimeMillis() - start) / 1000, flag); |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("indexCalculate calculateDeptCorreLation exception", e); |
|
|
|
throw new RenException("indexCalculate calculateDeptCorreLation exception", e); |
|
|
|
} |
|
|
|
|
|
|
|
//计算全区
|
|
|
@ -157,7 +152,6 @@ public class IndexCalculateServiceImpl implements IndexCalculateService { |
|
|
|
log.info("客户Id:{}【全区相关】计算完毕,总耗时:{}秒,result:{}", customerId, (System.currentTimeMillis() - start) / 1000, flag); |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("indexCalculate calDistrictAll exception", e); |
|
|
|
throw new RenException("indexCalculate calDistrictAll exception", e); |
|
|
|
} |
|
|
|
} catch (RenException e) { |
|
|
|
flag = false; |
|
|
|