Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Jeepay
Commits
3a55dec1
Commit
3a55dec1
authored
Jun 28, 2021
by
zhuxiao
Browse files
完善V3查单
parent
32938f9f
Changes
1
Show whitespace changes
Inline
Side-by-side
jeepay-payment/src/main/java/com/jeequan/jeepay/pay/channel/wxpay/kits/WxpayV3Util.java
View file @
3a55dec1
...
...
@@ -77,7 +77,7 @@ public class WxpayV3Util {
}
public
static
JSONObject
queryOrderV3
(
String
url
,
WxPayConfig
wxPayConfig
)
throws
WxPayException
{
String
response
=
getV3
(
url
,
wxPayConfig
);
String
response
=
getV3
(
PAY_BASE_URL
+
url
,
wxPayConfig
);
return
JSON
.
parseObject
(
response
);
}
...
...
@@ -169,7 +169,7 @@ public class WxpayV3Util {
throw
wxPayException
;
}
}
catch
(
Exception
e
)
{
log
.
error
(
"\n【异常信息】:{}"
,
url
,
e
.
getMessage
());
log
.
error
(
"\n【异常信息】:{}
,e={}
"
,
url
,
e
.
getMessage
());
throw
(
e
instanceof
WxPayException
)
?
(
WxPayException
)
e
:
new
WxPayException
(
e
.
getMessage
(),
e
);
}
finally
{
httpGet
.
releaseConnection
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment