|
@@ -66,8 +66,8 @@ public class AttractInvServiceImpl implements IAttractInvService {
|
|
|
}
|
|
|
}
|
|
|
//计算基准值
|
|
|
- attractInvReturnDto.setStandardA(averageAnnualOutputValue/3*1.5);
|
|
|
- attractInvReturnDto.setStandardB(averageAnnualTaxPaid/3*1.5);
|
|
|
+ attractInvReturnDto.setStandardA(averageAnnualOutputValue / aList.size() * 1.5);
|
|
|
+ attractInvReturnDto.setStandardB(averageAnnualTaxPaid / bList.size() * 1.5);
|
|
|
|
|
|
|
|
|
//筛选企业
|
|
@@ -87,18 +87,28 @@ public class AttractInvServiceImpl implements IAttractInvService {
|
|
|
double areaSum = 0;
|
|
|
double taxSum = 0;
|
|
|
double industrialSum = 0;
|
|
|
+ int divisorA = 0;
|
|
|
+ int divisorB = 0;
|
|
|
for (int i = 1; i<4; i++) {
|
|
|
EnterpriseBaseDataYear dataYear = new EnterpriseBaseDataYear();
|
|
|
dataYear.setYear(String.valueOf(year - i));
|
|
|
dataYear.setEnterpriseName(enterpriseName);
|
|
|
List<EnterpriseBaseDataYear> yearList = enterpriseBaseDataYearMapper.selectEnterpriseBaseDataYearList(dataYear);
|
|
|
areaSum += yearList.get(0).getLandArea();
|
|
|
- taxSum += yearList.get(0).getPaidTax();
|
|
|
- industrialSum += yearList.get(0).getTotalIndustrialValue();
|
|
|
+ Long tax = yearList.get(0).getPaidTax();
|
|
|
+ taxSum += tax;
|
|
|
+ Long industrialValue = yearList.get(0).getTotalIndustrialValue();
|
|
|
+ industrialSum += industrialValue;
|
|
|
+ if (tax != 0){
|
|
|
+ divisorA += 1;
|
|
|
+ }
|
|
|
+ if (industrialValue != 0){
|
|
|
+ divisorB +=1;
|
|
|
+ }
|
|
|
}
|
|
|
//计算该企业近三年的用地、年均产值、年均实缴税金
|
|
|
- attractInvDto.setAverageAnnualOutputValue(industrialSum/3);
|
|
|
- attractInvDto.setAverageAnnualTaxPaid(taxSum/3);
|
|
|
+ attractInvDto.setAverageAnnualOutputValue(industrialSum/divisorB);
|
|
|
+ attractInvDto.setAverageAnnualTaxPaid(taxSum/divisorA);
|
|
|
attractInvDto.setLandUsedInRecentThreeYears(areaSum);
|
|
|
//添加到返回list
|
|
|
attractInvDtos.add(attractInvDto);
|