Commit 3d0232d9 by jinxin

微信url问题处理

parent b0a25e96
......@@ -217,7 +217,7 @@ public class LicenceOrderController {
return RestResponse.failure(Convert.toStr(HaoBanErrCode.ERR_5.getCode()), HaoBanErrCode.ERR_5.getMsg());
}
//判断url是否存在,存在直接返回
if (null != result.getWxUrl() && null != result.getExpireTime() && new Date().before(result.getExpireTime())) {
if (null != result.getWxUrl()) {
Map<String, Object> map = new HashMap<String, Object>();
map.put("transactionCode", result.getOrderNumber());
map.put("url", result.getWxUrl());
......
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