库存插入问题

fencang
anthonyywj2 3 years ago
parent 192faa5e78
commit ed9a263abf

@ -84,10 +84,12 @@
<if test="supId == null">
AND supId is NULL
</if>
<if test="batchNo != '' and batchNo != null">
<if test="batchNo != '' and batchNo != null and batchNo!='empty'">
AND batchNo = #{batchNo}
</if>
<if test="batchNo == 'empty'">
AND batchNo is NULL
</if>
<if test="batchNo == '' || batchNo == null">
AND batchNo is NULL
</if>

Loading…
Cancel
Save