|
@@ -228,7 +228,7 @@ class Collect extends Base
|
|
|
try {
|
|
|
$user_info = Db::name('store_member')->where('id',$this->uid)->find();
|
|
|
$user_name = $user_info['name'];
|
|
|
- if(!$user_info['is_auth']) throw new Exception('请实名认证后兑换作品!');
|
|
|
+ // if(!$user_info['is_auth']) throw new Exception('请实名认证后兑换作品!');
|
|
|
$code_info = Db::table('goods_code')->where(['code'=>$code,'status'=>1])->find();
|
|
|
if(empty($code_info)) throw new Exception('兑换码有误!');
|
|
|
$goods_id = $code_info['goods_id'];
|
|
@@ -302,7 +302,7 @@ class Collect extends Base
|
|
|
->where('phone',$to_user)->where('is_deleted',0)->find();
|
|
|
if($send_user['id'] == $this->uid) throw new Exception('无法转赠给自己!');
|
|
|
if(empty($send_user)) throw new Exception('赠送会员不存在!');
|
|
|
- if(!$send_user['is_auth']) throw new Exception('赠送会员未实名认证!');
|
|
|
+ // if(!$send_user['is_auth']) throw new Exception('赠送会员未实名认证!');
|
|
|
if($collect_info['crystal'] > $user_crystal) throw new Exception('元石不足,无法转赠!');
|
|
|
$get_hash = get_goods_hash($send_user['id'],$collect_info['goods_id'],$collect_info['serial']);
|
|
|
$send_info = [
|