Commit 3abd1a3e authored by lcl's avatar lcl

u

parent 75a2fa0e
......@@ -35,27 +35,27 @@
</foreach>
)
</if>
<if test="bo.customerClass != null and bo.customerClass != '' ">
<if test="bo.customerClass != null and bo.customerClass.size > 0 ">
and customer_class in
<foreach collection="customerClass" item="item" open="(" separator="," close=")">
<foreach collection="bo.customerClass" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="bo.customerState != null and bo.customerState != '' ">
<if test="bo.customerState != null and bo.customerState.size > 0 ">
and customer_state in
<foreach collection="customerState" item="item" open="(" separator="," close=")">
<foreach collection="bo.customerState" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="bo.creditLevel != null and bo.creditLevel != '' ">
<if test="bo.creditLevel != null and bo.creditLevel.size > 0 ">
and credit_level in
<foreach collection="creditLevel" item="item" open="(" separator="," close=")">
<foreach collection="bo.creditLevel" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="bo.credential != null and bo.credential != '' ">
<if test="bo.credential != null and bo.credential.size > 0 ">
and credential in
<foreach collection="credential" item="item" open="(" separator="," close=")">
<foreach collection="bo.credential" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
......
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