|
@@ -72,10 +72,10 @@ public class GrowthRateServiceImpl implements IGrowthRateService {
|
|
|
oldSum += oldDataMonths.get(0).getPowerConsume();
|
|
|
}
|
|
|
}
|
|
|
- //计算同比增速:(今年-去年)/去年
|
|
|
- double rate = (sum - oldSum) / oldSum;
|
|
|
- //初始化企业并把该企业的同比增速和其他数据放入list中
|
|
|
- if (rate != 0 ) {
|
|
|
+ if (oldSum != 0 ) {
|
|
|
+ //计算同比增速:(今年-去年)/去年
|
|
|
+ double rate = (sum - oldSum) / oldSum;
|
|
|
+ //初始化企业并把该企业的同比增速和其他数据放入list中
|
|
|
GrowthRateDto growthRateDto = new GrowthRateDto();
|
|
|
growthRateDto.setRate(rate);
|
|
|
growthRateDto.setEnterpriseName(enterpriseDto.getEnterpriseName());
|
|
@@ -105,10 +105,10 @@ public class GrowthRateServiceImpl implements IGrowthRateService {
|
|
|
sum = dataSeasons.get(0).getPaidTax();
|
|
|
oldSum = oldDataSeasons.get(0).getPaidTax();
|
|
|
}
|
|
|
- //计算同比增速:(今年-去年)/去年
|
|
|
- double rate = (double) (sum - oldSum) / oldSum;
|
|
|
- //初始化企业并把该企业的同比增速和其他数据放入list中
|
|
|
- if (rate != 0) {
|
|
|
+ if (oldSum != 0) {
|
|
|
+ //计算同比增速:(今年-去年)/去年
|
|
|
+ double rate = (double) (sum - oldSum) / oldSum;
|
|
|
+ //初始化企业并把该企业的同比增速和其他数据放入list中
|
|
|
GrowthRateDto growthRateDto = new GrowthRateDto();
|
|
|
growthRateDto.setRate(rate);
|
|
|
growthRateDto.setEnterpriseName(dto.getEnterpriseName());
|
|
@@ -136,9 +136,9 @@ public class GrowthRateServiceImpl implements IGrowthRateService {
|
|
|
sum = dataYears.get(0).getFunding();
|
|
|
oldSum = oldDataYears.get(0).getFunding();
|
|
|
}
|
|
|
- //计算同比增速:(今年-去年)/去年
|
|
|
- double rate = (double) (sum - oldSum) / oldSum;
|
|
|
- if (rate != 0 ) {
|
|
|
+ if (oldSum != 0 ) {
|
|
|
+ //计算同比增速:(今年-去年)/去年
|
|
|
+ double rate = (double) (sum - oldSum) / oldSum;
|
|
|
//初始化企业并把该企业的同比增速和其他数据放入list中
|
|
|
GrowthRateDto growthRateDto = new GrowthRateDto();
|
|
|
growthRateDto.setRate(rate);
|