Commit 3cc04422 authored by honghy's avatar honghy

控货详情列表提单号查询调整

parent 64a04cfd
......@@ -105,16 +105,16 @@
</if>
<!--提单号-->
<if test="query.prodKey != null and query.prodKey != '' ">
AND occ.tidan_No like concat("%",#{query.prodKey},"%")
AND o.tidan_No like concat("%",#{query.prodKey},"%")
</if>
<if test="query.eqProdKey != null and query.eqProdKey != '' ">
AND occ.tidan_No = #{query.eqProdKey}
AND o.tidan_No = #{query.eqProdKey}
</if>
<if test="query.notEqProdKey != null and query.notEqProdKey != '' ">
AND occ.tidan_No != #{query.notEqProdKey}
AND o.tidan_No != #{query.notEqProdKey}
</if>
<if test="query.notProdKey != null and query.notProdKey != '' ">
AND occ.tidan_No not like concat("%",#{query.notProdKey},"%")
AND o.tidan_No not like concat("%",#{query.notProdKey},"%")
</if>
<!--发货人-->
<if test="query.consignorKey != null and query.consignorKey != '' ">
......
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