1.调整预验收库产品信息批次号为空时的查询逻辑

fencang
x_z 3 years ago
parent 6d7a7361f1
commit 388d09c9cf

@ -84,9 +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