修改开户回调
This commit is contained in:
parent
6ef533af5a
commit
c10814f3da
|
|
@ -119,6 +119,7 @@ public class MerchantProfitServiceImpl extends ServiceImpl<MerchantProfitMapper,
|
|||
/**
|
||||
* 计算分润开始
|
||||
* @date: 2022/1/21 15:29
|
||||
*
|
||||
* @param userApp:
|
||||
* @param orderType:
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -408,6 +408,9 @@ public class ApiPayServiceImpl implements ApiPayService {
|
|||
result.put("mercOrderNo",order.getMercOrderNo());
|
||||
result.put("orderNumber",order.getOrderNumber());
|
||||
result.put("payAmt",order.getConsumeFee().toString());
|
||||
|
||||
System.out.println("下单测试");
|
||||
|
||||
return ResultGenerator.genSuccessJsonResult("下单成功", result);
|
||||
}
|
||||
if (channel.getChannel() == 1) {
|
||||
|
|
|
|||
|
|
@ -120,7 +120,7 @@ public abstract class BaseMerAuditHandler<T extends IMerAuditHandler> implements
|
|||
QueryWrapper<MerchantImage> queryWrapper = new QueryWrapper<MerchantImage>()
|
||||
.eq("merchantCode", merchantChannelStatus.getMerchantCode()).eq("photoType", "06");
|
||||
MerchantImage merchantImage = merchantImageMapper.selectOne(queryWrapper);
|
||||
String baseUrl = "https://shop.shouyinbei.net/web/wmerchant.php?c=site&a=entry&ctrl=store&ac=oauth&op=add_merchan&do=web&m=we7_wmall&i=1";
|
||||
String baseUrl = "https://ky.sxczgkj.cn/web/wmerchant.php?c=site&a=entry&ctrl=store&ac=oauth&op=add_merchan&do=web&m=we7_wmall&i=1";
|
||||
StringBuffer sb = new StringBuffer(baseUrl);
|
||||
sb.append("&title=").append(merchantBaseInfo.getAlias());
|
||||
sb.append("&password=").append(userInfo.getPassword().toLowerCase());
|
||||
|
|
|
|||
|
|
@ -350,7 +350,7 @@ public class SxfMerAuditHandler {
|
|||
QueryWrapper<MerchantImage> queryWrapper = new QueryWrapper<MerchantImage>()
|
||||
.eq("merchantCode", merchantChannelStatus.getMerchantCode()).eq("photoType", "06");
|
||||
MerchantImage merchantImage = merchantImageMapper.selectOne(queryWrapper);
|
||||
String baseUrl = "https://shop.shouyinbei.net/web/wmerchant.php?c=site&a=entry&ctrl=store&ac=oauth&op=add_merchan&do=web&m=we7_wmall&i=1";
|
||||
String baseUrl = "https://ky.sxczgkj.cn/web/wmerchant.php?c=site&a=entry&ctrl=store&ac=oauth&op=add_merchan&do=web&m=we7_wmall&i=1";
|
||||
StringBuilder sb = new StringBuilder(baseUrl);
|
||||
sb.append("&title=").append(merchantBaseInfo.getAlias());
|
||||
sb.append("&password=").append(userInfo.getPassword().toLowerCase());
|
||||
|
|
|
|||
Loading…
Reference in New Issue