Commit 7d8fc735 authored by wux's avatar wux

bug186:应收款查询屏蔽管理订单不存在的数据

parent cd352773
...@@ -109,7 +109,7 @@ public interface ReceivableMapper extends AbstractMapper<ReceivableDO> { ...@@ -109,7 +109,7 @@ public interface ReceivableMapper extends AbstractMapper<ReceivableDO> {
"left join ecw_warehouse_line de on o.line_id = de.id ", "left join ecw_warehouse_line de on o.line_id = de.id ",
"left join ecw_order_consignor nor on nor.order_id = o.order_id ", "left join ecw_order_consignor nor on nor.order_id = o.order_id ",
"left join ecw_order_consignee nee on nee.order_id = o.order_id ", "left join ecw_order_consignee nee on nee.order_id = o.order_id ",
"where r.deleted = 0 and r.receipt_id is null ", "where r.deleted = 0 and r.receipt_id is null and o.order_id is not null",
"<when test = 'query.status != null'>", "<when test = 'query.status != null'>",
"AND o.`status` = #{query.status}", "AND o.`status` = #{query.status}",
"</when>", "</when>",
......
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