This commit is contained in:
linfso 2024-08-04 17:57:01 +08:00
parent 81fca86656
commit 177829a23a

View File

@ -660,6 +660,15 @@
</if>
<if test="params.problemQueryType != null and params.problemQueryType == 1 and params.problemQueryIds != null params.problemQueryIds !=''">
and a.FIND_IN_SET(`problem_type`,#{params.problemQueryIds})
</if>
<if test="params.problemQueryType != null and params.problemQueryType == 2 and params.problemQueryIds != null params.problemQueryIds !=''">
and !a.FIND_IN_SET(`problem_type`,#{params.problemQueryIds})
</if>
<if test="params.beginOrderDate != null and params.beginOrderDate != ''">
and a.order_date <![CDATA[ >= ]]> #{params.beginOrderDate}
</if>
@ -1420,6 +1429,15 @@
</if>
<if test="params.problemQueryType != null and params.problemQueryType == 1 and params.problemQueryIds != null params.problemQueryIds !=''">
and a.FIND_IN_SET(`problem_type`,#{params.problemQueryIds})
</if>
<if test="params.problemQueryType != null and params.problemQueryType == 2 and params.problemQueryIds != null params.problemQueryIds !=''">
and !a.FIND_IN_SET(`problem_type`,#{params.problemQueryIds})
</if>
<if test="blSign != null and blSign == 1">
and a.bl_sign='1'