xxxrrrdddd преди 2 години
родител
ревизия
7920bc2ca6
променени са 4 файла, в които са добавени 17 реда и са изтрити 3 реда
  1. 5 2
      extend/datamodel/GoodsHash.php
  2. 9 0
      extend/logicmodel/ChainLogic.php
  3. 2 0
      extend/logicmodel/GoodsLogic.php
  4. 1 1
      thinkphp/library/think/db/Query.php

+ 5 - 2
extend/datamodel/GoodsHash.php

@@ -10,11 +10,14 @@ namespace datamodel;
 
 
 use think\db\Query;
-
+/**
+ *@method static self zero()
+ *@method static self queryGoods($gid)
+ */
 class GoodsHash extends BaseDataModel
 {
     public function setOrder($order_id){
-        $this['order_id']=1;
+        $this['order_id']=$order_id;
         $this->save();
     }
     public function scopeZero(Query $query){

+ 9 - 0
extend/logicmodel/ChainLogic.php

@@ -82,6 +82,15 @@ class ChainLogic
         ]);
     }
 
+    public function buy(GoodsHash $goodsHash,Users $toUser){
+        $hash=$this->request('transfer',[
+            'from'=>$this->getMainAccount(),
+            'to'  =>$toUser['wallet_address'],
+            'tokenId'  =>$goodsHash['token_id'],
+        ]);
+        return $hash;
+    }
+
     protected function record($api,$params,$result){
         $dir=sprintf('%s/chainlog',RUNTIME_PATH);
         if(!is_dir($dir)){

+ 2 - 0
extend/logicmodel/GoodsLogic.php

@@ -496,6 +496,8 @@ class GoodsLogic
             $order['create_time'] = $time;
             $order['status'] = 1;
             $order['buy_type'] = $buyType;
+            $order['hash']=$hash['hash'];
+            $order['trans_hash']=ChainLogic::instance()->buy($hash,Users::get($uid));
             $result = $ordersGoodsData->insertGetId($order);
             if(!$result){
                 Db::rollback();

+ 1 - 1
thinkphp/library/think/db/Query.php

@@ -2621,7 +2621,7 @@ class Query
      * 查找单条记录
      * @access public
      * @param array|string|Query|\Closure $data
-     * @return array|false|\PDOStatement|string|Model
+     * @return array|false|\PDOStatement|string|Model|self|static
      * @throws DbException
      * @throws ModelNotFoundException
      * @throws DataNotFoundException