Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
token
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wallet
token
Commits
6dc543c7
Commit
6dc543c7
authored
Jun 13, 2019
by
shajiaiming
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/ticker' into 'master'
Feature/ticker See merge request
!38
parents
93e6877a
8b56be53
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
ServiceController.php
api/controllers/ServiceController.php
+1
-1
CoinBTYService.php
common/service/coin/CoinBTYService.php
+1
-1
CoinService.php
common/service/coin/CoinService.php
+3
-3
No files found.
api/controllers/ServiceController.php
View file @
6dc543c7
...
...
@@ -55,7 +55,7 @@ class ServiceController extends BaseController
$quotation
[
$key
]
=
(
float
)
sprintf
(
"%0.4f"
,
(
double
)
$value
);
}
$rate
=
$this
->
getRate
();
$quotation
[
'rmb'
]
=
(
float
)
sprintf
(
"%0.
2
f"
,
$rate
*
$quotation
[
'last'
]);
$quotation
[
'rmb'
]
=
(
float
)
sprintf
(
"%0.
4
f"
,
$rate
*
$quotation
[
'last'
]);
}
}
}
else
{
...
...
common/service/coin/CoinBTYService.php
View file @
6dc543c7
...
...
@@ -87,7 +87,7 @@ class CoinBTYService extends Coin implements CoinInterface
public
function
setPrice
(
$price
)
{
return
$this
->
price
=
(
float
)
sprintf
(
"%0.
2
f"
,
$price
);
return
$this
->
price
=
(
float
)
sprintf
(
"%0.
4
f"
,
$price
);
}
public
function
getDollar
()
...
...
common/service/coin/CoinService.php
View file @
6dc543c7
...
...
@@ -66,7 +66,7 @@ class CoinService extends Coin implements CoinInterface
*/
public
function
setPrice
(
$price
)
{
$this
->
price
=
(
float
)
sprintf
(
"%0.
2
f"
,
$price
);
$this
->
price
=
(
float
)
sprintf
(
"%0.
4
f"
,
$price
);
}
/**
...
...
@@ -155,7 +155,7 @@ class CoinService extends Coin implements CoinInterface
*/
public
function
setHigh
(
$high
)
{
$this
->
high
=
(
float
)
sprintf
(
"%0.
2
f"
,
$high
/
6.6
);
$this
->
high
=
(
float
)
sprintf
(
"%0.
4
f"
,
$high
/
6.6
);
}
/**
...
...
@@ -184,7 +184,7 @@ class CoinService extends Coin implements CoinInterface
*/
public
function
setLow
(
$low
)
{
$this
->
low
=
(
float
)
sprintf
(
"%0.
2
f"
,
$low
/
6.6
);
$this
->
low
=
(
float
)
sprintf
(
"%0.
4
f"
,
$low
/
6.6
);
}
/**
...
...
Write
Preview
Markdown
is supported
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