Merge pull request 'demand: TMS系统 - 成本列表 - 按照运输号查询数据 提示无数据' (#237) from aike into master

Reviewed-on: http://git.xdadan.loc/tanex/emis-service/pulls/237
This commit is contained in:
heyu 2025-11-20 17:30:19 +08:00
commit e3377a0724

View File

@ -205,7 +205,7 @@
<if test="feeType != null and feeType != ''"> and fee_type = #{feeType}</if>
<if test="splitType != null and splitType != ''"> and split_type = #{splitType}</if>
<if test="transType != null and transType != ''"> and trans_type=#{transType}</if>
<if test="transSignNo != null and transSignNo != ''"> and FIND_IN_SET(trans_sign_no,#{transSignNo})</if>
<if test="transSignNo != null and transSignNo != ''"> and trans_sign_no like concat('%', #{transSignNo}, '%')</if>
<if test="supplierCode != null and supplierCode != ''"> and supplier_code=#{supplierCode} </if>
<if test="supplierName != null and supplierName != ''"> and supplier_name like concat('%', #{supplierName}, '%')</if>
<if test="sendPlace != null and sendPlace != ''"> and send_place=#{sendPlace}</if>
@ -453,4 +453,4 @@
#{id}
</foreach>
</delete>
</mapper>
</mapper>