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
hf
2016-01-05 10:40:58 +0800
Commit
1b86e001b163d3d13f82781733cec9a6f86de332
1 parent
f59e7ba2
code review by hf: fixes bug to weixin pay value float to init
Show 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 @
1b86e00
...
...
@@ -870,7 +870,7 @@ class HomeController extends AbstractAction
break
;
}
$totalFee
=
intval
(
strtr
(
$orderDetail
[
'data'
][
'amount'
],
array
(
'¥'
=>
''
)))
*
100
;
$totalFee
=
intval
(
$orderDetail
[
'data'
][
'payment_amount'
]
*
100
)
;
$openId
=
$this
->
getSession
(
'weixinOpenId'
);
if
(
empty
(
$openId
))
{
break
;
...
...
Please
register
or
login
to post a comment