Commit e936b662 authored by lcl's avatar lcl

u

parent e77bccbb
...@@ -19,13 +19,13 @@ ...@@ -19,13 +19,13 @@
<!-- </foreach>--> <!-- </foreach>-->
<!-- </if>--> <!-- </if>-->
<choose> <choose>
<when test="bo.province != null "> <when test="bo.province != null and bo.province.size > 0 and (bo.city == null or bo.city.size == 0) ">
and register_province in and register_province in
<foreach collection="province" item="item" open="(" separator="," close=")"> <foreach collection="province" item="item" open="(" separator="," close=")">
#{item} #{item}
</foreach> </foreach>
</when> </when>
<when test="bo.city != null "> <when test="bo.city != null and bo.city.size > 0 ">
and register_city in and register_city in
<foreach collection="city" item="item" open="(" separator="," close=")"> <foreach collection="city" item="item" open="(" separator="," close=")">
#{item} #{item}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment