fix: 修复

dev_unify
chenhc 5 months ago
parent 14af1e3b8e
commit 1200db9be9

@ -183,6 +183,7 @@ public class FilterOrderRequest extends ListPageRequest {
private Integer busType;
private Integer inCodeStatus;
private String relKey;
private String key;
//发票查询
private String supInoivceSearch;

@ -100,6 +100,7 @@ public class PurOrderRequest extends ListPageRequest {
private String endAuditDate;
private Integer dealStatus;
private String orderBy;
private String key;
private Integer productType;
}

@ -16,6 +16,11 @@
(select name from basic_corp bc where bc.erpId = io.customerId) customerName
from io_order as io
<where>
<if test="key != null and key != ''">
AND(
billNo like concat('%', #{key}, '%')
)
</if>
<if test="id != null and id != ''">
AND id = #{id}
</if>

@ -50,6 +50,11 @@
left join basic_corp on pur_order.supId = basic_corp.erpId
<where>
<if test="key != '' and key != null">
AND (
billNo like concat('%', #{key}, '%')
)
</if>
<if test="billNo != '' and billNo != null">
AND billNo = #{billNo}
</if>

Loading…
Cancel
Save