库存插入问题

fengcang
anthonyywj2 3 years ago
parent b0bf4a0d10
commit 6227f8dfd1

@ -85,6 +85,9 @@
<if test="batchNo != '' and batchNo != null">
AND batchNo = #{batchNo}
</if>
<if test="batchNo != '' and batchNo != null and batchNo!='empty'">
AND batchNo = #{batchNo}
</if>
<if test="batchNo == '' || batchNo == null">
AND batchNo is NULL
</if>

@ -95,6 +95,9 @@
<if test="batchNo != '' and batchNo != null">
AND batchNo = #{batchNo}
</if>
<if test="batchNo != '' and batchNo != null and batchNo!='empty'">
AND batchNo = #{batchNo}
</if>
<if test="batchNo == '' || batchNo == null">
AND batchNo is NULL
</if>

@ -83,6 +83,9 @@
<if test="batchNo != '' and batchNo != null">
AND batchNo = #{batchNo}
</if>
<if test="batchNo != '' and batchNo != null and batchNo!='empty'">
AND batchNo = #{batchNo}
</if>
<if test="batchNo == '' || batchNo == null">
AND batchNo is NULL
</if>

Loading…
Cancel
Save