demand: TMS系统 - 客户账单管理 - 财务开票处理 - 直接根据多个发票号查询数据

committer: heyu
This commit is contained in:
aike 2025-09-08 18:22:13 +08:00
parent e23709bc86
commit de83050202

View File

@ -100,7 +100,7 @@
<if test="realTaxType != null and realTaxType != ''"> and a.real_tax_type = #{realTaxType}</if>
<if test="openMoneyMax != null "> and a.open_money_max = #{openMoneyMax}</if>
<if test="openMoney != null "> and a.open_money = #{openMoney}</if>
<if test="invoiceNo != null and invoiceNo != ''"> and ch.invoice_no = #{invoiceNo}</if>
<if test="invoiceNo != null and invoiceNo != ''"> and FIND_IN_SET(ch.invoice_no, REPLACE(#{params.invoiceNo}, '\n', ','))</if>
<if test="invoiceStatus != null and invoiceStatus != ''"> and a.invoice_status = #{invoiceStatus}</if>
<if test="invoiceStatusDesc != null and invoiceStatusDesc != ''"> and a.invoice_status_desc like concat('%', #{invoiceStatusDesc}, '%')</if>
<if test="recieveAddress != null and recieveAddress != ''"> and a.recieve_address like concat('%', #{recieveAddress}, '%')</if>