This commit is contained in:
linfso 2024-08-04 17:55:35 +08:00
parent 9e306ae08b
commit 81fca86656

View File

@ -965,6 +965,15 @@
and a.waybill_status='0' and a.order_status='0'
</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.waybillStatType != null and params.waybillStatType == 2">
and a.waybill_status!='0' and a.order_status='1'
</if>