Browse Source

2.7 修改现金退款

dev
huangqizhen 2 weeks ago
parent
commit
18eac1c10f
  1. 4
      src/main/resources/cashMapper/CashRefundMapper.xml

4
src/main/resources/cashMapper/CashRefundMapper.xml

@ -385,10 +385,10 @@
</foreach> </foreach>
</if> </if>
<if test="refundCurrency != null and refundCurrency.length() > 0"> <if test="refundCurrency != null and refundCurrency.length() > 0">
AND crr.refund_currency = #{refundCurrency}
AND crr.refund_currency like CONCAT('%', #{refundCurrency}, '%')
</if> </if>
<if test="refundChannels != null and refundChannels.length()>0"> <if test="refundChannels != null and refundChannels.length()>0">
and crr.refund_channels = #{refundChannels}
and crr.refund_channels like CONCAT('%', #{refundChannels}, '%')
</if> </if>
<if test="sTime != null and eTime != null"> <if test="sTime != null and eTime != null">
and crr.`refund_time` BETWEEN #{sTime} AND #{eTime} and crr.`refund_time` BETWEEN #{sTime} AND #{eTime}

Loading…
Cancel
Save