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

This commit is contained in:
sangelxiu1 2025-07-25 13:23:24 +08:00 committed by cabbage
parent ada3238657
commit 2f9c58e35a
1 changed files with 2 additions and 1 deletions

View File

@ -3216,7 +3216,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
@ -3233,6 +3233,7 @@
and cmrr.COUNTY != 0
</if>
)
order by ba.pk_id asc
</select>