|
@@ -0,0 +1,109 @@
|
|
|
+package com.enteprise.attract_inv.service.impl;
|
|
|
+
|
|
|
+import com.enteprise.attract_inv.domain.AttractInv;
|
|
|
+import com.enteprise.attract_inv.domain.dto.AttractInvDto;
|
|
|
+import com.enteprise.attract_inv.domain.dto.AttractInvReturnDto;
|
|
|
+import com.enteprise.attract_inv.service.IAttractInvService;
|
|
|
+import com.enteprise.base_data_year.domain.EnterpriseBaseDataYear;
|
|
|
+import com.enteprise.base_data_year.mapper.EnterpriseBaseDataYearMapper;
|
|
|
+import com.enteprise.enterprise.domain.Enterprise;
|
|
|
+import com.enteprise.enterprise.dto.EnterpriseDto;
|
|
|
+import com.enteprise.enterprise.mapper.EnterpriseMapper;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+@Service
|
|
|
+public class AttractInvServiceImpl implements IAttractInvService {
|
|
|
+ @Autowired
|
|
|
+ private EnterpriseBaseDataYearMapper enterpriseBaseDataYearMapper;
|
|
|
+ @Autowired
|
|
|
+ private EnterpriseMapper enterpriseMapper;
|
|
|
+ @Override
|
|
|
+ public AttractInvReturnDto getData(AttractInv attractInv) {
|
|
|
+ AttractInvReturnDto attractInvReturnDto = new AttractInvReturnDto();
|
|
|
+ String code = attractInv.getCode();
|
|
|
+ String typeNum = attractInv.getTypeNum();
|
|
|
+ int year = attractInv.getYear();
|
|
|
+ //获取行业总产值和行业总用地
|
|
|
+ List<Long> aList = new ArrayList<>();
|
|
|
+ List<Long> bList = new ArrayList<>();
|
|
|
+ double averageAnnualOutputValue = 0;
|
|
|
+ double averageAnnualTaxPaid = 0;
|
|
|
+ for (int i = 1; i<4; i++) {
|
|
|
+ EnterpriseBaseDataYear dataYear = new EnterpriseBaseDataYear();
|
|
|
+ //近三年行业数据
|
|
|
+ Long areaSum = 0L;
|
|
|
+ Long taxSum = 0L;
|
|
|
+ Long industrialSum = 0L;
|
|
|
+ dataYear.setYear(String.valueOf(year - i));
|
|
|
+ dataYear.setCode(code);
|
|
|
+ List<EnterpriseBaseDataYear> yearList = enterpriseBaseDataYearMapper.selectEnterpriseBaseDataYearList(dataYear);
|
|
|
+ for (EnterpriseBaseDataYear item : yearList){
|
|
|
+ areaSum += item.getLandArea();
|
|
|
+ taxSum += item.getPaidTax();
|
|
|
+ industrialSum += item.getTotalIndustrialValue();
|
|
|
+ }
|
|
|
+ long a = taxSum / areaSum;
|
|
|
+ long b = industrialSum / areaSum;
|
|
|
+ if (a != 0 ){
|
|
|
+ aList.add(a);
|
|
|
+ }
|
|
|
+ if (b != 0){
|
|
|
+ bList.add(b);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (!aList.isEmpty()){
|
|
|
+ for (Long a : aList){
|
|
|
+ averageAnnualOutputValue += a;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (!bList.isEmpty()){
|
|
|
+ for (Long b : bList){
|
|
|
+ averageAnnualTaxPaid += b;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ //计算基准值
|
|
|
+ attractInvReturnDto.setStandardA(averageAnnualOutputValue/3*1.5);
|
|
|
+ attractInvReturnDto.setStandardB(averageAnnualTaxPaid/3*1.5);
|
|
|
+
|
|
|
+
|
|
|
+ //筛选企业
|
|
|
+ ArrayList<AttractInvDto> attractInvDtos = new ArrayList<>();
|
|
|
+ Enterprise enterprise = new Enterprise();
|
|
|
+ enterprise.setTypeNum(typeNum);
|
|
|
+ enterprise.setCode(code);
|
|
|
+ List<EnterpriseDto> enterpriseDtos = enterpriseMapper.selectAllWithType(enterprise);
|
|
|
+ //计算各企业的近三年
|
|
|
+ for (EnterpriseDto dto : enterpriseDtos){
|
|
|
+ AttractInvDto attractInvDto = new AttractInvDto();
|
|
|
+ String enterpriseName = dto.getEnterpriseName();
|
|
|
+ attractInvDto.setId(dto.getId());
|
|
|
+ attractInvDto.setTypeNum(dto.getTypeNum());
|
|
|
+ attractInvDto.setEnterpriseName(enterpriseName);
|
|
|
+ //近三年企业数据
|
|
|
+ double areaSum = 0;
|
|
|
+ double taxSum = 0;
|
|
|
+ double industrialSum = 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();
|
|
|
+ }
|
|
|
+ //计算该企业近三年的用地、年均产值、年均实缴税金
|
|
|
+ attractInvDto.setAverageAnnualOutputValue(industrialSum/3);
|
|
|
+ attractInvDto.setAverageAnnualTaxPaid(taxSum/3);
|
|
|
+ attractInvDto.setLandUsedInRecentThreeYears(areaSum);
|
|
|
+ //添加到返回list
|
|
|
+ attractInvDtos.add(attractInvDto);
|
|
|
+ }
|
|
|
+ attractInvReturnDto.setList(attractInvDtos);
|
|
|
+ return attractInvReturnDto;
|
|
|
+ }
|
|
|
+}
|