Browse Source

add:修改查询状态不对的情况

pre-production
pref_mail@163.com 2 months ago
parent
commit
312630c669
  1. 8
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/mapper/StatisticsOrderInfoMapper.xml

8
blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/mapper/StatisticsOrderInfoMapper.xml

@ -689,7 +689,13 @@
and lsoi.sync_fee_status = #{param.syncFeeSstatus} and lsoi.sync_fee_status = #{param.syncFeeSstatus}
</if> </if>
<if test="param.signStatus != null"> <if test="param.signStatus != null">
and lsoi.sign_status = #{param.signStatus} and CASE
lww.waybill_status
WHEN 100 THEN
2
WHEN 90 THEN
1 ELSE 0
END = #{param.signStatus}
</if> </if>
<if test="param.waybillNo != null and param.waybillNo != '' "> <if test="param.waybillNo != null and param.waybillNo != '' ">
and Locate(#{param.waybillNo},lww.waybill_no) > 0 and Locate(#{param.waybillNo},lww.waybill_no) > 0

Loading…
Cancel
Save