## Fix - 收益区域->过滤已选择

This commit is contained in:
sangelxiu1 2025-07-25 13:23:24 +08:00
parent bdecc555f0
commit 63ab7c7866
1 changed files with 2 additions and 1 deletions

View File

@ -3219,7 +3219,7 @@
LEFT JOIN BD_VERTEX bv ON cm.PK_VERTEX = bv.PK_ID
LEFT JOIN BD_REGION_VERTEX brv ON bv.REGION_VERTEX_PK_ID = brv.PK_ID
where 1=1
AND cmrr.PK_MEMBER IN (#{userId} )
AND cmrr.PK_MEMBER NOT IN (#{userId} )
<if test="type != null and type == 1">
and cmrr.PROVINCE != 0
and cmrr.CITY = 0
@ -3236,6 +3236,7 @@
and cmrr.COUNTY != 0
</if>
)
order by ba.pk_id asc
</select>