songxingwei 2 年之前
父節點
當前提交
62df6667f7

+ 3 - 3
application/api/controller/Order.php

@@ -342,7 +342,7 @@ class Order extends Base
 //                $ddcid = Db::name('hash')->where('hash',$hash['hash'])->value('ddcid');
 //                $company_hash_time = $hash['create_at'] ? $hash['create_at'] : date('Y-m-d H:i:s');
 //                Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
-                $company_hash = Db::name('hash2')->where('goods_id',$order['c_id'])->where('success',1)->value('hash');
+                $company_hash = Db::name('hash2')->where('goods_id',$order['c_id'])->where('success',1)->field('hash,ddcid')->find();
                 $company_hash_time = date('Y-m-d H:i:s');
                 $collectors_hash = '';
                 $date = [
@@ -353,9 +353,9 @@ class Order extends Base
                     'c_id'=>$order['c_id'],
                     'pro_info'=>$order['pro_info'],
                     'company'=>$company,
-                    'company_hash'=>$company_hash,
+                    'company_hash'=>$company_hash['hash'],
                     'company_hash_time'=>$company_hash_time,
-                    //'ddcid'=>$ddcid,
+                    'ddcid'=>$company_hash['ddcid'],
                     'collectors_hash'=>$collectors_hash,
                     'collectors_hash_time'=>'',
                     'type'=>2

+ 3 - 3
application/api/controller/Pay.php

@@ -105,7 +105,7 @@ class Pay extends Controller
 //                $ddcid = Db::name('hash')->where('hash',$hash['hash'])->value('ddcid');
 //                $company_hash_time = $hash['create_at'] ? $hash['create_at'] : date('Y-m-d H:i:s');
                 //Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
-                $company_hash = Db::name('hash2')->where('goods_id',$order['c_id'])->where('success',1)->value('hash');
+                $company_hash = Db::name('hash2')->where('goods_id',$order['c_id'])->where('success',1)->field('hash,ddcid')->find();
                 $company_hash_time = date('Y-m-d H:i:s');
                 $collectors_hash = '';
                 $date = [
@@ -116,9 +116,9 @@ class Pay extends Controller
                     'c_id'=>$order['c_id'],
                     'pro_info'=>$order['pro_info'],
                     'company'=>$company,
-                    'company_hash'=>$company_hash,
+                    'company_hash'=>$company_hash['hash'],
                     'company_hash_time'=>$company_hash_time,
-                    //'ddcid'=>$ddcid,
+                    'ddcid'=>$company_hash['ddcid'],
                     'collectors_hash'=>$collectors_hash,
                     'collectors_hash_time'=>'',
                     'type'=>2

+ 2 - 2
application/api/controller/Timedtask.php

@@ -170,9 +170,8 @@ class Timedtask
                     if ($this->redisNonceSetNx()){
                         $nonce = $redis->get('nonce');
                         $ddcid = $v['ddcid'];
-                        $url = "http://192.144.219.204:8083/ddc/transfer?from=$from&to=$to&ddcid=$ddcid&nonce=".$nonce;
+                        $url = "http://192.144.219.204:8083/ddc1155/safeTransferFrom?amount=1&ddcId=$ddcid&from=$from&nonce=$nonce&to=$to&ddcid=$ddcid";
                         $res=curlRequest($url);
-                        echo $res.'<br />';
                         $result=json_decode($res,true);
                         if($result['code']){
                             continue;
@@ -180,6 +179,7 @@ class Timedtask
                             Db::name('store_order_info')
                                 ->where('id',$v['id'])
                                 ->update(['collectors_hash'=>$res,'collectors_hash_time'=>date('Y-m-d H:i:s')]);
+
                             $redis->set('nonce',$nonce+1);
                             $redis->del('noncenx');
                         }