Browse Source

10.15退款新增查询

lijianlin/feature-202509231533026-现金管理-收款管理
huangqizhen 1 month ago
parent
commit
3e11bb2a59
  1. 10
      src/main/resources/cashMapper/CashRefundMapper.xml

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

@ -150,7 +150,7 @@ status = #{status},
<if test="orderCode != null">
and cr.order_code = #{orderCode}
</if>
<if test="name != null and name.size > 0">
<if test="name != null and name.length() > 0">
and cr.name = #{name}
</if>
<if test="jwcode != null">
@ -162,17 +162,17 @@ status = #{status},
#{markets}
</foreach>
</if>
<if test="paymentCurrency!= null and paymentCurrency.size > 0">
<if test="paymentCurrency!= null and paymentCurrency.length() > 0">
AND cr.payment_currency = #{paymentCurrency}
</if>
<if test="goodsName != null and goodName.size>0">
<if test="goodsName != null and goodsName.length()>0">
and cr.goods_name = #{goodsName}
</if>
<if test="payTyoe != null and payTyoe.size>0">
<if test="payType != null and payType.length()>0">
and cr.pay_type = #{payTyoe}
</if>
<if test="refundModel != null and refundModel.size>0">
<if test="refundModel != null and refundModel.length()>0">
and cr.refundModel = #{refundModel}
</if>
<if test="startTime != null and endTime != null">

Loading…
Cancel
Save