Explorar el Código

[卡券][修复]:多商户通用券商户全部禁用后作废

release_toaliyun_real
hupeng hace 7 años
padre
commit
b831382b71
Se han modificado 1 ficheros con 8 adiciones y 2 borrados
  1. +8
    -2
      mallinkService/src/main/resources/mapper/WxCouponMapper.xml

+ 8
- 2
mallinkService/src/main/resources/mapper/WxCouponMapper.xml Ver fichero

@@ -204,8 +204,14 @@
</update>

<update id="offExpiriedCouponByMerchantStatus">
update wx_coupon c, wx_merchant m SET c.status = 1, c.update_date = now()
where c.status = 0 and m.status = 0 and m.id = c.merchant_id
update wx_coupon c
SET c.status = 1, c.update_date = now()
where c.status = 0 and
(select count(*) from wx_coupon_merchant cm, wx_merchant m
where m.id = cm.merchant_id
and c.id = cm.product_id
and cm.status = 0
and m.status = 1) = 0
</update>

</mapper>

Cargando…
Cancelar
Guardar