Ver código fonte

Merge branch 'release_toaliyun_real' of https://git.malls.iformall.com/server/formallProject into release_real_202108

release_toaliyun_real
xhxu 4 anos atrás
pai
commit
9060951f85
1 arquivos alterados com 7 adições e 1 exclusões
  1. +7
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxCouponSendServiceImpl.java

+ 7
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxCouponSendServiceImpl.java Ver arquivo

@@ -512,7 +512,13 @@ public class WxCouponSendServiceImpl implements WxCouponSendService {
map.put("time3",dateFormat.format(couponOrder.getCreateDate())); map.put("time3",dateFormat.format(couponOrder.getCreateDate()));
map.put("time4",dateFormat.format(couponOrder.getExpiredTime())); map.put("time4",dateFormat.format(couponOrder.getExpiredTime()));
map.put("thing5","你的优惠券已到账!请立即使用"); map.put("thing5","你的优惠券已到账!请立即使用");
map.put("goToPage","pages/index/index?type=mc");
if(EnumCouponType.COUPON_TINGCHE.getCode().equals(couponOrder.getCouponType())
|| EnumCouponType.COUPON_CREDIT_PARK.getCode().equals(couponOrder.getCouponType())){
map.put("goToPage","pages/index/index?type=in");
}else{
map.put("goToPage","pages/index/index?type=mc");
}

msg.setMsg(JSONObject.toJSONString(map)); msg.setMsg(JSONObject.toJSONString(map));
wxMsgService.batchSendAppinfo(msg); wxMsgService.batchSendAppinfo(msg);
} }


Carregando…
Cancelar
Salvar