1
This commit is contained in:
parent
0b21cdb254
commit
c9d3a20170
@ -92,6 +92,29 @@ class Transaction extends BaseModel {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function addEx($address,$transId, $action, $tokenId, $tokenType, $itemUniId, $itemId, $itemNum, $result)
|
||||||
|
{
|
||||||
|
SqlHelper::insert(
|
||||||
|
myself()->_getMysql(''),
|
||||||
|
't_transaction',
|
||||||
|
array(
|
||||||
|
'account_id' => '',
|
||||||
|
'address' => $address,
|
||||||
|
'trans_id' => $transId,
|
||||||
|
'action' => $action,
|
||||||
|
'token_id' => $tokenId,
|
||||||
|
'token_type' => $tokenType,
|
||||||
|
'item_uniid' => $itemUniId,
|
||||||
|
'item_id' => $itemId,
|
||||||
|
'item_num' => $itemNum,
|
||||||
|
'result' => $result,
|
||||||
|
'status' => self::CREATED_STATUS,
|
||||||
|
'createtime' => myself()->_getNowTime(),
|
||||||
|
'modifytime' => myself()->_getNowTime(),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
public static function getActionDesc($transDb)
|
public static function getActionDesc($transDb)
|
||||||
{
|
{
|
||||||
switch ($transDb['action']) {
|
switch ($transDb['action']) {
|
||||||
|
@ -206,7 +206,8 @@ class BlockChainService {
|
|||||||
$rspObj = json_decode($response, true);
|
$rspObj = json_decode($response, true);
|
||||||
if ($rspObj['errcode'] == 0) {
|
if ($rspObj['errcode'] == 0) {
|
||||||
$transId = $rspObj['trans_id'];
|
$transId = $rspObj['trans_id'];
|
||||||
Transaction::add(
|
Transaction::addEx(
|
||||||
|
$address,
|
||||||
$transId,
|
$transId,
|
||||||
$actionType,
|
$actionType,
|
||||||
'', //$tokenId,
|
'', //$tokenId,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user