Toggle navigation
Toggle navigation
This project
Loading...
Sign in
chenchao
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to dashboard
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
hf
2016-01-05 10:55:14 +0800
Commit
7b18713852ea66dc461431805ac61d3d5ada0674
1 parent
1b86e001
code review by hf: fixes bug to weixin pay value float to init
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
yohobuy/m.yohobuy.com/application/controllers/Home.php
yohobuy/m.yohobuy.com/application/controllers/Home.php
View file @
7b18713
...
...
@@ -870,7 +870,7 @@ class HomeController extends AbstractAction
break
;
}
$totalFee
=
int
val
(
$orderDetail
[
'data'
][
'payment_amount'
]
*
100
);
$totalFee
=
str
val
(
$orderDetail
[
'data'
][
'payment_amount'
]
*
100
);
$openId
=
$this
->
getSession
(
'weixinOpenId'
);
if
(
empty
(
$openId
))
{
break
;
...
...
Please
register
or
login
to post a comment