wantShopAreaName

This commit is contained in:
苏竹红
2023-06-30 09:37:45 +08:00
parent 35d3a93515
commit 09ead622dc
2 changed files with 2 additions and 1 deletions

View File

@@ -499,7 +499,7 @@
AND hpli.deadline BETWEEN #{deadlineStart} and #{deadlineStart} AND hpli.deadline BETWEEN #{deadlineStart} and #{deadlineStart}
</if> </if>
<if test="intentAreaName!=null and intentAreaName!=''"> <if test="intentAreaName!=null and intentAreaName!=''">
and b.want_shop_area like concat('%/',#{intentAreaName},'/%') and hpuinfo.want_shop_area like concat('%/',#{intentAreaName},'/%')
</if> </if>
<if test="acceptAdjustType!=null"> <if test="acceptAdjustType!=null">
AND hpuinfo.accept_adjust_type = #{acceptAdjustType} AND hpuinfo.accept_adjust_type = #{acceptAdjustType}

View File

@@ -285,6 +285,7 @@ public class HyPartnerIntentInfoServiceImpl implements HyPartnerIntentInfoServic
if(Objects.isNull(intentInfoVO.getAcceptAdjustType())){ if(Objects.isNull(intentInfoVO.getAcceptAdjustType())){
intentInfoVO.setAcceptAdjustType(userInfoVO.getAcceptAdjustType()); intentInfoVO.setAcceptAdjustType(userInfoVO.getAcceptAdjustType());
} }
intentInfoVO.setWantShopAreaName(userInfoVO.getWantShopAreaName());
return intentInfoVO; return intentInfoVO;
} }