Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Rock Zhang
9 years ago
Commit
5da16827026284964772166594dc49499587868f
1 parent
14f3f3eb
修复微信扫码判定是否支付成功的逻辑
Code Review By Rock Zhang
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
library/WebPlugin/Pay/Wechatqrcode/Service.php
yohobuy/www.yohobuy.com/application/models/Shopping/Pay.php
library/WebPlugin/Pay/Wechatqrcode/Service.php
View file @
5da1682
...
...
@@ -88,7 +88,7 @@ class Service extends PayAbstract
$rsp
=
new
Rspparams
();
// 支付成功
if
(
array_key_exists
(
"return_code"
,
$result
)
&&
array_key_exists
(
"result_code"
,
$result
)
&&
$result
[
"return_code"
]
==
"SUCCESS"
&&
$result
[
"result_code"
]
==
"SUCCESS"
){
if
(
isset
(
$result
[
'trade_state'
])
&&
$result
[
'trade_state'
]
===
'SUCCESS'
){
$rsp
->
payResult
=
200
;
$rsp
->
bankName
=
"WX"
;
$rsp
->
orderCode
=
$data
[
'orderCode'
];
...
...
yohobuy/www.yohobuy.com/application/models/Shopping/Pay.php
View file @
5da1682
...
...
@@ -430,7 +430,7 @@ class PayModel
$input
->
SetOut_trade_no
(
$tradeNo
);
$result
=
WxPayApi
::
orderQuery
(
$input
);
if
(
array_key_exists
(
"return_code"
,
$result
)
&&
array_key_exists
(
"result_code"
,
$result
)
&&
$result
[
"return_code"
]
==
"SUCCESS"
&&
$result
[
"result_code"
]
==
"SUCCESS"
)
{
if
(
isset
(
$result
[
'trade_state'
])
&&
$result
[
'trade_state'
]
===
'SUCCESS'
)
{
$result
=
array
(
'code'
=>
'200'
,
'message'
=>
'success'
...
...
Please
register
or
login
to post a comment