demand: 航线查询不支持按账单号查询bug修复,航线查询/导出支持按多个运单号/账单号查询/导出

committer: heyu
This commit is contained in:
aike 2025-06-03 11:45:21 +08:00
parent 94f31075dd
commit be6e3279d1

View File

@ -175,7 +175,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
emis_settle_invoice_rel rel
where a.apply_seq_no=rel.apply_seq_no and
rel.del_flag = '0'
and FIND_IN_SET(rel.`bill_no`,#{params.billCode})
and rel.bill_no REGEXP REPLACE(#{params.billCode}, '\n', '|')
)
<!--
AND apply_seq_no IN (
@ -208,7 +208,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
select 1 from emis_settle_invoice_bill_rel x3
where x3.del_flag = '0'
and a.apply_seq_no=x3.apply_seq_no
AND FIND_IN_SET(x3.settle_bill_no, #{settleBillNo})
AND x3.settle_bill_no REGEXP REPLACE(#{params.settleBillNo}, '\n', '|')
)
</if>
@ -421,7 +421,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
emis_settle_invoice_rel rel
where a.apply_seq_no=rel.apply_seq_no and
rel.del_flag = '0'
and FIND_IN_SET(rel.`bill_no`,#{params.billCode})
and rel.bill_no REGEXP REPLACE(#{params.billCode}, '\n', '|')
)
</if>
@ -431,7 +431,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
FROM emis_settle_invoice_bill_rel x3
WHERE x3.del_flag = '0'
AND a.apply_seq_no = x3.apply_seq_no
AND FIND_IN_SET(x3.settle_bill_no, #{params.settleBillNo})
AND x3.settle_bill_no REGEXP REPLACE(#{params.settleBillNo}, '\n', '|')
)
</if>