Преглед изворни кода

ljx:修改招商和匹配度返回空值或没有返回值的问题

ljx пре 1 месец
родитељ
комит
0dad66db04

+ 1 - 1
enteprise-admin/src/main/java/com/enteprise/attract_inv/service/impl/AttractInvServiceImpl.java

@@ -46,7 +46,7 @@ public class AttractInvServiceImpl implements IAttractInvService {
                 taxSum += item.getPaidTax();
                 industrialSum += item.getTotalIndustrialValue();
             }
-            if (areaSum != 0 && taxSum != 0 && industrialSum != 0){
+            if (areaSum != 0  ){
                 aList.add(taxSum / areaSum);
                 bList.add(industrialSum / areaSum);
             }

+ 1 - 0
enteprise-admin/src/main/java/com/enteprise/matchAnalysis/service/impl/MatchServiceImpl.java

@@ -142,6 +142,7 @@ public class MatchServiceImpl implements IMatchService {
                 double oldTotalIndustrial = 0;
                 String enterpriseName = enterpriseDto.getEnterpriseName();
                 //年度指标获取
+                dataYear.setEnterpriseName(enterpriseName);
                 dataYear.setYear(String.valueOf(year));
                 List<EnterpriseBaseDataYear> dataYears = enterpriseBaseDataYearMapper.selectEnterpriseBaseDataYearList(dataYear);
                 dataYear.setYear(String.valueOf(year - 1));

+ 1 - 1
enteprise-admin/src/main/resources/mapper/base_data_year/EnterpriseBaseDataYearMapper.xml

@@ -33,7 +33,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
     <select id="selectEnterpriseBaseDataYearList" parameterType="EnterpriseBaseDataYear" resultMap="EnterpriseBaseDataYearResult">
         <include refid="selectEnterpriseBaseDataYearVo"/>
         <where>  
-            <if test="enterpriseName != null  and enterpriseName != ''"> and enterprise_name like concat('%', #{enterpriseName}, '%')</if>
+            <if test="enterpriseName != null  and enterpriseName != ''"> and enterprise_name = #{enterpriseName}</if>
             <if test="location != null  and location != ''"> and location = #{location}</if>
             <if test="code != null  and code != ''"> and code = #{code}</if>
             <if test="mainBusiness != null  and mainBusiness != ''"> and main_business = #{mainBusiness}</if>

+ 1 - 1
enteprise-admin/src/main/resources/mapper/season/EnterpriseBaseDataSeasonMapper.xml

@@ -33,7 +33,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
     <select id="selectEnterpriseBaseDataSeasonList" parameterType="EnterpriseBaseDataSeason" resultMap="EnterpriseBaseDataSeasonResult">
         <include refid="selectEnterpriseBaseDataSeasonVo"/>
         <where>
-            <if test="enterpriseName != null  and enterpriseName != ''"> and enterprise_name like concat('%', #{enterpriseName}, '%')</if>
+            <if test="enterpriseName != null  and enterpriseName != ''"> and enterprise_name = #{enterpriseName}</if>
             <if test="location != null  and location != ''"> and location = #{location}</if>
             <if test="code != null  and code != ''"> and code = #{code}</if>
             <if test="mainBusiness != null  and mainBusiness != ''"> and main_business = #{mainBusiness}</if>