Commit 95cdf6ea authored by shajiaiming's avatar shajiaiming

fix

parent 990497f2
...@@ -48,7 +48,7 @@ class CoinIssueCoin extends CommonActiveRecord ...@@ -48,7 +48,7 @@ class CoinIssueCoin extends CommonActiveRecord
return [ return [
[['name', 'symbol', 'total', 'owner', 'introduction', 'category', 'type', 'platform_id', 'chain_id', 'charge_unit', 'charge'], 'required'], [['name', 'symbol', 'total', 'owner', 'introduction', 'category', 'type', 'platform_id', 'chain_id', 'charge_unit', 'charge'], 'required'],
[['total', 'category', 'type', 'platform_id', 'chain_id'], 'integer'], [['total', 'category', 'type', 'platform_id', 'chain_id'], 'integer'],
[['introduction','charge_unit'], 'string', 'length' => [1, 20]], [['introduction', 'charge_unit'], 'string', 'length' => [1, 20]],
['symbol', 'string', 'length' => [1, 6]], ['symbol', 'string', 'length' => [1, 6]],
['name', 'string', 'length' => [1, 20]], ['name', 'string', 'length' => [1, 20]],
#['status', 'in', 'range' => [1, 2, 0]], #['status', 'in', 'range' => [1, 2, 0]],
...@@ -86,7 +86,7 @@ class CoinIssueCoin extends CommonActiveRecord ...@@ -86,7 +86,7 @@ class CoinIssueCoin extends CommonActiveRecord
//非增发 //非增发
if (CoinIssueCoin::TYPE_NO == $this->type) { if (CoinIssueCoin::TYPE_NO == $this->type) {
$model = CoinIssueCoin::find() $model = CoinIssueCoin::find()
->where(['name' => $this->name, 'platform_id' => $this->platform_id, 'status' => CoinIssueCoin::STATUS_SUCCESS]) ->where(['name' => $this->name, 'platform_id' => $this->platform_id])
->andWhere(['<>', 'status', CoinIssueCoin::STATUS_FAILED]) ->andWhere(['<>', 'status', CoinIssueCoin::STATUS_FAILED])
->orderBy('id desc')->one(); ->orderBy('id desc')->one();
if ($model) { if ($model) {
...@@ -116,7 +116,7 @@ class CoinIssueCoin extends CommonActiveRecord ...@@ -116,7 +116,7 @@ class CoinIssueCoin extends CommonActiveRecord
} }
if (CoinIssueCoin::TYPE_NO == $this->type) { if (CoinIssueCoin::TYPE_NO == $this->type) {
$model = CoinIssueCoin::find() $model = CoinIssueCoin::find()
->where(['symbol' => $this->symbol, 'platform_id' => $this->platform_id, 'status' => CoinIssueCoin::STATUS_SUCCESS]) ->where(['symbol' => $this->symbol, 'platform_id' => $this->platform_id])
->andWhere(['<>', 'status', CoinIssueCoin::STATUS_FAILED]) ->andWhere(['<>', 'status', CoinIssueCoin::STATUS_FAILED])
->orderBy('id desc')->one(); ->orderBy('id desc')->one();
if ($model) { if ($model) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment