Commit 10367486 authored by jiaorz's avatar jiaorz

Merge branch 'master_pays'

parents 6bb62c4c 3eae6aab
...@@ -187,7 +187,8 @@ public class OrderPayBiz extends BaseBiz<OrderPayMapper, OrderPay> { ...@@ -187,7 +187,8 @@ public class OrderPayBiz extends BaseBiz<OrderPayMapper, OrderPay> {
if (StringUtils.isNotBlank(pay.getNotifyUrl())) { if (StringUtils.isNotBlank(pay.getNotifyUrl())) {
String url = pay.getNotifyUrl(); String url = pay.getNotifyUrl();
Integer type = pay.getType() == null ? 1 : pay.getType(); Integer type = pay.getType() == null ? 1 : pay.getType();
url += "&tradeNo=" + orderNo + "&type=" + type; Integer payWay = pay.getPayWay();
url += "&tradeNo=" + orderNo + "&type=" + type+"&payWay="+payWay;
log.error("---支付回调处理---orderNo=======" + orderNo + "----notifyUrl====" + url); log.error("---支付回调处理---orderNo=======" + orderNo + "----notifyUrl====" + url);
String result = ""; String result = "";
if (url.contains("https") || url.contains("HTTPS")) { if (url.contains("https") || url.contains("HTTPS")) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment