入库业务单添加查询条件;

This commit is contained in:
王奎兴
2026-06-04 10:23:27 +08:00
parent 4ab7c8b8b7
commit bf075c57e7
3 changed files with 27 additions and 0 deletions
@@ -429,6 +429,21 @@
<if test="pushStatus != null">
and a.PUSH_STATUS = #{pushStatus}
</if>
<if test="businessType != null and businessType != ''">
and a.BUSINESS_TYPE = #{businessType}
</if>
<if test="reservationOrderSource != null">
and a.RESERVATION_ORDER_SOURCE = #{reservationOrderSource}
</if>
<if test="createByName != null and createByName != ''">
and a.create_by_name like concat('%', #{createByName}, '%')
</if>
<if test="storageTimeStart != null and storageTimeStart != ''">
and date_format(a.storage_time,'%Y-%m-%d') &gt;= #{storageTimeStart}
</if>
<if test="storageTimeEnd != null and storageTimeEnd != ''">
and date_format(a.storage_time,'%Y-%m-%d') &lt;= #{storageTimeEnd}
</if>
<!-- 入库明细:物料名称、物料编码(同一明细行同时满足;与计划数量汇总口径一致)。关联 material_base_info 避免明细冗余名称与主档不一致时筛不到 -->
<if test="(materialName != null and materialName != '') or (materialCode != null and materialCode != '')">
and exists (