This commit is contained in:
linfso 2025-02-23 19:01:31 +08:00
parent 6597de7d4a
commit 8e2c17a7e2

View File

@ -56,7 +56,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
and a.dispatch_underling_site_code = #{params.dispatchUnderlingSiteCode}
</if>
<if test="custNo != null and custNo != ''"> and b.cust_no=#{custNo}</if>
<if test="params.custNo != null and params.custNo != ''">
and a.cust_no=#{params.custNo}
</if>
<if test="params.receiveCompany != null and params.receiveCompany != ''">
and a.receive_company like concat('%', #{params.receiveCompany}, '%')