|
@@ -85,13 +85,15 @@ public class AttractInvServiceImpl implements IAttractInvService {
|
|
double industrialSum = 0;
|
|
double industrialSum = 0;
|
|
int divisorA = 0;
|
|
int divisorA = 0;
|
|
int divisorB = 0;
|
|
int divisorB = 0;
|
|
|
|
+ int divisorC = 0;
|
|
for (int i = 1; i<4; i++) {
|
|
for (int i = 1; i<4; i++) {
|
|
EnterpriseBaseDataYear dataYear = new EnterpriseBaseDataYear();
|
|
EnterpriseBaseDataYear dataYear = new EnterpriseBaseDataYear();
|
|
dataYear.setYear(String.valueOf(year - i));
|
|
dataYear.setYear(String.valueOf(year - i));
|
|
dataYear.setEnterpriseName(enterpriseName);
|
|
dataYear.setEnterpriseName(enterpriseName);
|
|
List<EnterpriseBaseDataYear> yearList = enterpriseBaseDataYearMapper.selectEnterpriseBaseDataYearList(dataYear);
|
|
List<EnterpriseBaseDataYear> yearList = enterpriseBaseDataYearMapper.selectEnterpriseBaseDataYearList(dataYear);
|
|
if (!yearList.isEmpty()) {
|
|
if (!yearList.isEmpty()) {
|
|
- areaSum += yearList.get(0).getLandArea();
|
|
|
|
|
|
+ Double landArea = yearList.get(0).getLandArea();
|
|
|
|
+ areaSum += landArea;
|
|
double tax = yearList.get(0).getPaidTax();
|
|
double tax = yearList.get(0).getPaidTax();
|
|
taxSum += tax;
|
|
taxSum += tax;
|
|
double industrialValue = yearList.get(0).getTotalIndustrialValue();
|
|
double industrialValue = yearList.get(0).getTotalIndustrialValue();
|
|
@@ -102,6 +104,9 @@ public class AttractInvServiceImpl implements IAttractInvService {
|
|
if (industrialValue != 0) {
|
|
if (industrialValue != 0) {
|
|
divisorB += 1;
|
|
divisorB += 1;
|
|
}
|
|
}
|
|
|
|
+ if (landArea != 0) {
|
|
|
|
+ divisorC += 1;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//计算该企业近三年的用地、年均产值、年均实缴税金
|
|
//计算该企业近三年的用地、年均产值、年均实缴税金
|
|
@@ -111,7 +116,9 @@ public class AttractInvServiceImpl implements IAttractInvService {
|
|
if (divisorA != 0) {
|
|
if (divisorA != 0) {
|
|
attractInvDto.setAverageAnnualTaxPaid(taxSum / divisorA);
|
|
attractInvDto.setAverageAnnualTaxPaid(taxSum / divisorA);
|
|
}
|
|
}
|
|
- attractInvDto.setLandUsedInRecentThreeYears(areaSum / 3);
|
|
|
|
|
|
+ if (divisorC != 0) {
|
|
|
|
+ attractInvDto.setLandUsedInRecentThreeYears(areaSum / divisorC);
|
|
|
|
+ }
|
|
//添加到返回list
|
|
//添加到返回list
|
|
attractInvDtos.add(attractInvDto);
|
|
attractInvDtos.add(attractInvDto);
|
|
}
|
|
}
|