6006 退款记录中的组织和操作员查询不可用

This commit is contained in:
gaowdong 2025-05-16 17:00:15 +08:00
parent a5619f5300
commit 3504872a5a
2 changed files with 4 additions and 0 deletions

View File

@ -34,6 +34,7 @@ public class OrderRefundHistoryParam implements Serializable
private LocalDateTime endDateTime; private LocalDateTime endDateTime;
private String searchValue; private String searchValue;
private String createBy;
public OrderRefundHistoryParam() { public OrderRefundHistoryParam() {
this.endDateTime = LocalDateTime.now().plusDays(7); this.endDateTime = LocalDateTime.now().plusDays(7);

View File

@ -448,6 +448,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="param.endDateTime != null "> <if test="param.endDateTime != null ">
and at2.trade_time <![CDATA[ <= ]]> #{param.endDateTime} and at2.trade_time <![CDATA[ <= ]]> #{param.endDateTime}
</if> </if>
<if test="param.createBy != null ">
and at2.update_by like CONCAT('%',#{param.createBy},'%')
</if>
<if test="param.orderId != null"> <if test="param.orderId != null">
and oi.order_id =#{param.orderId} and oi.order_id =#{param.orderId}
</if> </if>