Merge pull request 'demand: TMS系统 - 客户账单管理 - 财务开票处理 - 直接根据多个发票号查询数据' (#180) from aike into master

Reviewed-on: http://git.xdadan.loc/tanex/emis-service/pulls/180
This commit is contained in:
heyu 2025-09-08 18:31:55 +08:00
commit 68d92fafbd

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(#{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>