fix:铺位推送bug

This commit is contained in:
苏竹红
2025-02-06 10:02:38 +08:00
parent 172572106b
commit 78af1e29d5
2 changed files with 2 additions and 2 deletions

View File

@@ -366,7 +366,7 @@
b.mobile as mobile,
b.investment_manager as investmentManager
from xfsg_shop_info a left join xfsg_line_info b on a.line_id = b.id
where a.deleted = 0 and a.development_manager = #{request.developmentManager} and shop_status in (0, 1)
where a.deleted = 0 and a.development_manager = #{request.developmentManager} and shop_status in (0, 1) and point_id is null
<if test="request.keyword != null and request.keyword!=''">
and (b.username like concat('%', #{request.keyword}, '%') or b.mobile like concat('%', #{request.keyword}, '%'))
</if>