소스 검색

[订单][修复]:有价无价券过滤的问题

release_toaliyun_real
hupeng 7 년 전
부모
커밋
3e5ed5f477
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      mallinkService/src/main/resources/mapper/WxOrderMapper.xml

+ 2
- 2
mallinkService/src/main/resources/mapper/WxOrderMapper.xml 파일 보기

@@ -546,10 +546,10 @@
<if test="merchantName!=null and merchantName!=''">
and o.`merchant_name` like concat('%',#{merchantName},'%')
</if>
<if test="payment!=null and payment=0">
<if test="payment!=null and (payment== '' or payment == 0)">
and o.`payment` = 0
</if>
<if test="payment!=null and payment>0">
<if test="payment!=null and payment > 0">
and o.`payment` &gt; 0
</if>



불러오는 중...
취소
저장