执行单添加发牌状态与日期,入库单添加运输业务单号

This commit is contained in:
赵辉
2026-06-04 16:28:08 +08:00
parent c7e4ced035
commit 3a004607b2
8 changed files with 79 additions and 6 deletions
@@ -54,6 +54,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="goodsNumber != null and goodsNumber != ''">
and eo.GOODS_NUMBER like concat('%', #{goodsNumber}, '%')
</if>
<if test="invoiceStartTime != null">
and eo.INVOICE_DATE &gt;= #{invoiceStartTime}
</if>
<if test="invoiceEndTime != null">
and eo.INVOICE_DATE &lt;= #{invoiceEndTime}
</if>
<if test="businessUnit != null and businessUnit != ''">
and eo.BUSINESS_UNIT like concat('%', #{businessUnit}, '%')
</if>