|
@@ -58,7 +58,7 @@ public class PayNonOrderServiceImpl implements PayNonOrderService {
|
|
|
private String secondHandUrl;
|
|
|
@Value("${pay.vip-notify-url}")
|
|
|
private String superVipUrl;
|
|
|
-
|
|
|
+ @Value("${pay.coupon-notify-url}")
|
|
|
private String couponUrl;
|
|
|
@Resource
|
|
|
private RemoteCallService remoteCallService;
|
|
@@ -948,12 +948,6 @@ public class PayNonOrderServiceImpl implements PayNonOrderService {
|
|
|
orderClubMapper.insertCouponClub(couponClubPo);
|
|
|
// 改历史记录支付状态
|
|
|
payOrderMapper.updateCouponRecord(recordId);
|
|
|
- //todo 修改支付链接状态
|
|
|
- OrderPayLinkVo orderPayLink = payOrderMapper.getCouponPayLink(recordId, amount);
|
|
|
- if (null != orderPayLink && (12 == payType || 17 == payType)) {
|
|
|
- orderPayLink.setPayStatus(1);
|
|
|
- payOrderMapper.updateOrderPayLinkStatus(orderPayLink);
|
|
|
- }
|
|
|
Date date = new Date();
|
|
|
String curDateStr = (new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")).format(date);
|
|
|
// 保存收款记录
|