|
@@ -468,11 +468,7 @@ class GoodsLogic
|
|
$time = date('Y-m-d H:i:s');
|
|
$time = date('Y-m-d H:i:s');
|
|
Db::startTrans();
|
|
Db::startTrans();
|
|
#todo:HASH
|
|
#todo:HASH
|
|
- /* $hash=GoodsHash::zero()->queryGoods($goods_id)->lock(true)->find();
|
|
|
|
- if(!$hash){
|
|
|
|
- Db::rollback();
|
|
|
|
- return Response::fail('无可用hash');
|
|
|
|
- }*/
|
|
|
|
|
|
+ $hash=GoodsHash::zero()->queryGoods($goods_id)->lock(true)->find();
|
|
$needSubMoney=$buyType===0||$buyType===1;
|
|
$needSubMoney=$buyType===0||$buyType===1;
|
|
if($pay_type == 1){
|
|
if($pay_type == 1){
|
|
//余额抵扣
|
|
//余额抵扣
|
|
@@ -496,19 +492,19 @@ class GoodsLogic
|
|
$order['create_time'] = $time;
|
|
$order['create_time'] = $time;
|
|
$order['status'] = 1;
|
|
$order['status'] = 1;
|
|
$order['buy_type'] = $buyType;
|
|
$order['buy_type'] = $buyType;
|
|
- //$order['trans_hash']=ChainLogic::instance()->buy($hash,Users::get($uid));
|
|
|
|
|
|
+ $order['trans_hash']=ChainLogic::instance()->buy($hash,Users::get($uid));
|
|
$result = $ordersGoodsData->insertGetId($order);
|
|
$result = $ordersGoodsData->insertGetId($order);
|
|
if(!$result){
|
|
if(!$result){
|
|
Db::rollback();
|
|
Db::rollback();
|
|
return Response::fail('购买失败');
|
|
return Response::fail('购买失败');
|
|
}
|
|
}
|
|
- //$hash->setOrder($result);
|
|
|
|
|
|
+ $hash && $hash->setOrder($result);
|
|
$goods['uid'] = $uid;
|
|
$goods['uid'] = $uid;
|
|
$goods['goods_id'] = $goods_id;
|
|
$goods['goods_id'] = $goods_id;
|
|
$goods['price'] = $price;
|
|
$goods['price'] = $price;
|
|
$goods['create_time'] = date('Y-m-d H:i:s');
|
|
$goods['create_time'] = date('Y-m-d H:i:s');
|
|
$goods['is_buy_before']=$buyType;
|
|
$goods['is_buy_before']=$buyType;
|
|
- //$goods['token_id']=$hash['token_id'];
|
|
|
|
|
|
+ $goods['token_id']=$hash['token_id']??null;
|
|
$result = $this->usersGoodsData->saveEntityAndGetId($goods);
|
|
$result = $this->usersGoodsData->saveEntityAndGetId($goods);
|
|
if($result >0){
|
|
if($result >0){
|
|
Db::commit();
|
|
Db::commit();
|
|
@@ -647,11 +643,7 @@ class GoodsLogic
|
|
return Response::fail('积分不足');
|
|
return Response::fail('积分不足');
|
|
}
|
|
}
|
|
#todo:HASH
|
|
#todo:HASH
|
|
- /*$hash=GoodsHash::zero()->queryGoods($goods_id)->lock(true)->find();
|
|
|
|
- if(!$hash){
|
|
|
|
- Db::rollback();
|
|
|
|
- return Response::fail('无可用hash');
|
|
|
|
- }*/
|
|
|
|
|
|
+ $hash=GoodsHash::zero()->queryGoods($goods_id)->lock(true)->find();
|
|
//生成购买订单
|
|
//生成购买订单
|
|
$order['uid'] = $uid;
|
|
$order['uid'] = $uid;
|
|
$order['goods_id'] = $goods_id;
|
|
$order['goods_id'] = $goods_id;
|
|
@@ -664,18 +656,18 @@ class GoodsLogic
|
|
$order['pay_time'] = $time;
|
|
$order['pay_time'] = $time;
|
|
$order['create_time'] = $time;
|
|
$order['create_time'] = $time;
|
|
$order['status'] = 1;
|
|
$order['status'] = 1;
|
|
- //$order['trans_hash'] = ChainLogic::instance()->buy($hash,Users::get($uid));
|
|
|
|
|
|
+ $order['trans_hash'] = ChainLogic::instance()->buy($hash,Users::get($uid));
|
|
$result = (new OrdersGoods())->insertGetId($order);
|
|
$result = (new OrdersGoods())->insertGetId($order);
|
|
if(!$result){
|
|
if(!$result){
|
|
Db::rollback();
|
|
Db::rollback();
|
|
return Response::fail('兑换失败');
|
|
return Response::fail('兑换失败');
|
|
}
|
|
}
|
|
- //$hash->setOrder($result);
|
|
|
|
|
|
+ $hash && $hash->setOrder($result);
|
|
$goods['uid'] = $uid;
|
|
$goods['uid'] = $uid;
|
|
$goods['goods_id'] = $goods_id;
|
|
$goods['goods_id'] = $goods_id;
|
|
$goods['price'] = $price;
|
|
$goods['price'] = $price;
|
|
$goods['create_time'] = date('Y-m-d H:i:s');
|
|
$goods['create_time'] = date('Y-m-d H:i:s');
|
|
- //$goods['token_id']=$hash['token_id'];
|
|
|
|
|
|
+ $goods['token_id']=$hash['token_id']??null;
|
|
$result = $this->usersGoodsData->saveEntityAndGetId($goods);
|
|
$result = $this->usersGoodsData->saveEntityAndGetId($goods);
|
|
if($result >0){
|
|
if($result >0){
|
|
Db::commit();
|
|
Db::commit();
|