6006 退款记录中的组织和操作员查询不可用
This commit is contained in:
parent
a5619f5300
commit
3504872a5a
|
|
@ -34,6 +34,7 @@ public class OrderRefundHistoryParam implements Serializable
|
|||
private LocalDateTime endDateTime;
|
||||
|
||||
private String searchValue;
|
||||
private String createBy;
|
||||
|
||||
public OrderRefundHistoryParam() {
|
||||
this.endDateTime = LocalDateTime.now().plusDays(7);
|
||||
|
|
|
|||
|
|
@ -448,6 +448,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="param.endDateTime != null ">
|
||||
and at2.trade_time <![CDATA[ <= ]]> #{param.endDateTime}
|
||||
</if>
|
||||
<if test="param.createBy != null ">
|
||||
and at2.update_by like CONCAT('%',#{param.createBy},'%')
|
||||
</if>
|
||||
<if test="param.orderId != null">
|
||||
and oi.order_id =#{param.orderId}
|
||||
</if>
|
||||
|
|
|
|||
Loading…
Reference in New Issue