Browse Source

[A端][修复]:修复a端订单列表只能显示核销+退款的订单问题

release_toaliyun_real
hupeng 7 years ago
parent
commit
50ca00ffad
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      mallinkService/src/main/resources/mapper/WxCouponOrderMapper.xml

+ 2
- 3
mallinkService/src/main/resources/mapper/WxCouponOrderMapper.xml View File

@@ -175,12 +175,11 @@
</select> </select>


<select id="findListOfAdmin" parameterType="com.simple.domain.po.WxCouponOrder" resultMap="BVoResultMap"> <select id="findListOfAdmin" parameterType="com.simple.domain.po.WxCouponOrder" resultMap="BVoResultMap">
select <include refid="allBUserVerifiedCouponOrderColumns" />
from wx_coupon_order co,wx_order o,wx_coupon c,wx_c_user cu,wx_merchant_b_user bu
select <include refid="allBUserOrderedCouponOrderColumns" />
from wx_coupon_order co,wx_order o,wx_coupon c,wx_c_user cu
where o.id = co.order_id where o.id = co.order_id
and co.coupon_id = c.id and co.coupon_id = c.id
and cu.id = co.c_user_id and cu.id = co.c_user_id
and bu.id = co.b_user_id
<if test=" null != id "> <if test=" null != id ">
and co.id = #{id} and co.id = #{id}
</if> </if>


Loading…
Cancel
Save