|
@@ -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
|