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
6df0ab62
Commit
6df0ab62
authored
Nov 07, 2019
by
shajiaiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fox
parent
74c65456
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
CoinIssueChainRecord.php
common/models/psources/CoinIssueChainRecord.php
+11
-0
CoinIssueCoin.php
common/models/psources/CoinIssueCoin.php
+13
-2
No files found.
common/models/psources/CoinIssueChainRecord.php
View file @
6df0ab62
...
@@ -40,4 +40,14 @@ class CoinIssueChainRecord extends CommonActiveRecord
...
@@ -40,4 +40,14 @@ class CoinIssueChainRecord extends CommonActiveRecord
{
{
return
$this
->
hasOne
(
CoinIssueCoin
::
className
(),
[
'id'
=>
'issue_coin_id'
]);
return
$this
->
hasOne
(
CoinIssueCoin
::
className
(),
[
'id'
=>
'issue_coin_id'
]);
}
}
public
function
getAdvance
()
{
return
$this
->
hasOne
(
CoinIssueCoin
::
className
(),
[
'id'
=>
'issue_coin_id'
])
->
where
([
'status'
=>
CoinIssueCoin
::
STATUS_ADVANCE
]);
}
public
function
getConfirm
()
{
return
$this
->
hasOne
(
CoinIssueCoin
::
className
(),
[
'id'
=>
'issue_coin_id'
])
->
where
([
'>'
,
'status'
,
CoinIssueCoin
::
STATUS_CONFIRM
]);
}
}
}
\ No newline at end of file
common/models/psources/CoinIssueCoin.php
View file @
6df0ab62
...
@@ -50,8 +50,8 @@ class CoinIssueCoin extends CommonActiveRecord
...
@@ -50,8 +50,8 @@ class CoinIssueCoin extends CommonActiveRecord
[
'msg'
,
'string'
,
'length'
=>
[
1
,
10
]],
[
'msg'
,
'string'
,
'length'
=>
[
1
,
10
]],
[
'name'
,
'string'
,
'length'
=>
[
1
,
20
]],
[
'name'
,
'string'
,
'length'
=>
[
1
,
20
]],
#['status', 'in', 'range' => [1, 2, 0]],
#['status', 'in', 'range' => [1, 2, 0]],
#
['name', 'verfiyName'],
[
'name'
,
'verfiyName'
],
#
['symbol', 'verfiySymbol'],
[
'symbol'
,
'verfiySymbol'
],
[
'total'
,
'verfiyAmount'
]
[
'total'
,
'verfiyAmount'
]
];
];
}
}
...
@@ -68,6 +68,9 @@ class CoinIssueCoin extends CommonActiveRecord
...
@@ -68,6 +68,9 @@ class CoinIssueCoin extends CommonActiveRecord
public
function
verfiyName
(
$attribute
,
$params
)
public
function
verfiyName
(
$attribute
,
$params
)
{
{
if
(
CoinIssueCoin
::
TYPE_YES
==
$this
->
type
)
{
return
true
;
}
$model
=
CoinIssueCoin
::
find
()
->
where
([
'name'
=>
$this
->
name
,
'platform_id'
=>
$this
->
platform_id
])
->
orderBy
(
'id desc'
)
->
one
();
$model
=
CoinIssueCoin
::
find
()
->
where
([
'name'
=>
$this
->
name
,
'platform_id'
=>
$this
->
platform_id
])
->
orderBy
(
'id desc'
)
->
one
();
if
(
false
==
$model
)
{
if
(
false
==
$model
)
{
return
true
;
return
true
;
...
@@ -80,6 +83,14 @@ class CoinIssueCoin extends CommonActiveRecord
...
@@ -80,6 +83,14 @@ class CoinIssueCoin extends CommonActiveRecord
public
function
verfiySymbol
(
$attribute
,
$params
)
public
function
verfiySymbol
(
$attribute
,
$params
)
{
{
if
(
preg_match
(
'/^[A-Z]+$/'
,
$this
->
symbol
))
{
$this
->
addError
(
$attribute
,
'名称必须大写'
);
return
false
;
}
if
(
CoinIssueCoin
::
TYPE_YES
==
$this
->
type
)
{
return
true
;
}
$model
=
CoinIssueCoin
::
find
()
->
where
([
'symbol'
=>
$this
->
symbol
,
'platform_id'
=>
$this
->
platform_id
])
->
orderBy
(
'id desc'
)
->
one
();
$model
=
CoinIssueCoin
::
find
()
->
where
([
'symbol'
=>
$this
->
symbol
,
'platform_id'
=>
$this
->
platform_id
])
->
orderBy
(
'id desc'
)
->
one
();
if
(
false
==
$model
)
{
if
(
false
==
$model
)
{
return
true
;
return
true
;
...
...
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