|
|
@@ -325,7 +325,7 @@ public class AliPayCommonServiceImpl implements AliPayCommonService {
|
|
|
GoodsDon goodsDon = goodsDonMapper.selectById(orderDon.getGoodsId());
|
|
|
String subject = goodsDon.getTitle();
|
|
|
//回调地址
|
|
|
- String host = envCommonService.getHost();
|
|
|
+ String host = envCommonService.getNotifyHost();
|
|
|
String notifyUrl = String.format("%s%s", host, BaseZfbConfig.wholesaleNotifyUrl);
|
|
|
//是否在微信内支付 微信内支付宝支付后 支付宝回调页面不跳转
|
|
|
Boolean isWx = Optional.ofNullable(re.getIsWx()).orElse(false);
|
|
|
@@ -365,7 +365,7 @@ public class AliPayCommonServiceImpl implements AliPayCommonService {
|
|
|
depositMapper.updateById(orderDon);
|
|
|
String subject = "押金";
|
|
|
//回调地址
|
|
|
- String host = envCommonService.getHost();
|
|
|
+ String host = envCommonService.getNotifyHost();
|
|
|
String notifyUrl = String.format("%s%s", host, BaseZfbConfig.wholesaleDepositNotifyUrl);
|
|
|
//是否在微信内支付 微信内支付宝支付后 支付宝回调页面不跳转
|
|
|
Boolean isWx = Optional.ofNullable(re.getIsWx()).orElse(false);
|