Browse Source

fix

release_toaliyun_real
winter 1 year ago
parent
commit
9c23a08599
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      mallinkService/src/main/java/com/iformall/service/payBill/impl/JianHangMaServiceImpl.java

+ 3
- 3
mallinkService/src/main/java/com/iformall/service/payBill/impl/JianHangMaServiceImpl.java View File

@@ -51,9 +51,9 @@ public class JianHangMaServiceImpl extends PayBillBaseService implements PayBill
return null;
}
String full_url = url + "&"+request.toMacString()+"&MAC="+request.getMAC();
log.debug("full_url:"+full_url);
log.info("full_url:"+full_url);
String response = HttpUtil.doPost(full_url, null);
log.debug("url:"+full_url+">>>>reponse:"+response);
log.info("url:"+full_url+">>>>reponse:"+response);
if (StringUtils.isBlank(response)) {
return null;
}
@@ -61,7 +61,7 @@ public class JianHangMaServiceImpl extends PayBillBaseService implements PayBill
if ("true".equals(rb.getString("SUCCESS"))) {
String payurl = rb.getString("PAYURL");
String qrresponse = HttpUtil.doPost(payurl, null);
log.debug("url:"+payurl+">>>>qrreponse:"+qrresponse);
log.info("url:"+payurl+">>>>qrreponse:"+qrresponse);
if (StringUtils.isBlank(qrresponse)) {
return null;
}


Loading…
Cancel
Save