Commit 5b417c54 by jinxin

企业微信订单未支付列表页查询

parent 71914575
...@@ -222,12 +222,12 @@ ...@@ -222,12 +222,12 @@
<if test="qywxOrderId != null and qywxOrderId !=''"> <if test="qywxOrderId != null and qywxOrderId !=''">
and qywx_order_id=#{qywxOrderId} and qywx_order_id=#{qywxOrderId}
</if> </if>
<if test="qywxOrderStatus != null"> <if test="qywxOrderStatus != null and qywxOrderStatus != 0">
<if test="qywxOrderStatus == 0">
and qywx_order_status is null
</if>
and qywx_order_status=#{qywxOrderStatus} and qywx_order_status=#{qywxOrderStatus}
</if> </if>
<if test="qywxOrderStatus == 0">
and (qywx_order_status=#{qywxOrderStatus} or qywx_order_status is null)
</if>
<if test="startTime != null and startTime !='' "> <if test="startTime != null and startTime !='' ">
and create_time <![CDATA[ >= ]]> #{startTime} and create_time <![CDATA[ >= ]]> #{startTime}
</if> </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