Commit 040e096a by 胡懿

入库明细findlist xml增加根据goodsInfoId查询的条件

parent afc155c5
...@@ -65,6 +65,9 @@ ...@@ -65,6 +65,9 @@
<if test="shelves != null and shelves.id != null and shelves.id != ''"> <if test="shelves != null and shelves.id != null and shelves.id != ''">
AND a.shelves_id = #{shelves.id} AND a.shelves_id = #{shelves.id}
</if> </if>
<if test="goodsInfo != null and goodsInfo.id != null and goodsInfo.id != ''">
AND a.goods_info_id = #{goodsInfo.id}
</if>
<if test="model != null and model != ''"> <if test="model != null and model != ''">
AND a.model LIKE AND a.model LIKE
<if test="dbName == 'oracle'">'%'||#{model}||'%'</if> <if test="dbName == 'oracle'">'%'||#{model}||'%'</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