|
@@ -235,7 +235,7 @@ class UserCenter extends Base
|
|
if (!$check_id_card) $this->error('身份证号格式错误');
|
|
if (!$check_id_card) $this->error('身份证号格式错误');
|
|
$is_auth = Db::table('store_member')->where('id',$this->uid)->value('is_auth');
|
|
$is_auth = Db::table('store_member')->where('id',$this->uid)->value('is_auth');
|
|
if($is_auth) $this->error('已认证');
|
|
if($is_auth) $this->error('已认证');
|
|
- $check = Db::name('store_member')->where('id_card',$id_card)->count();
|
|
|
|
|
|
+ $check = Db::name('store_member')->where('id_card',$id_card)->where('is_deleted',0)->count();
|
|
if ($check) $this->error('身份证号已经认证过');
|
|
if ($check) $this->error('身份证号已经认证过');
|
|
|
|
|
|
if (!identifyCertification($id_card,$true_name)) $this->error('身份证与姓名验证失败');
|
|
if (!identifyCertification($id_card,$true_name)) $this->error('身份证与姓名验证失败');
|
|
@@ -606,7 +606,9 @@ class UserCenter extends Base
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
public function examples(){
|
|
public function examples(){
|
|
- //$this->error('暂时未开放...');
|
|
|
|
|
|
+ if(time() >= 1665320400 && $this->uid != 3 ){
|
|
|
|
+ $this->error('系统升级中,暂停转赠。。。');
|
|
|
|
+ }
|
|
if (redisSetNx('examples'.$this->uid)){
|
|
if (redisSetNx('examples'.$this->uid)){
|
|
$id = input('id');
|
|
$id = input('id');
|
|
$redis = new Redis([ 'select'=> 2]);
|
|
$redis = new Redis([ 'select'=> 2]);
|
|
@@ -623,7 +625,7 @@ class UserCenter extends Base
|
|
$info = Db::name('store_order_info')->where('id',$id)->where('mid',$this->uid)->find();
|
|
$info = Db::name('store_order_info')->where('id',$id)->where('mid',$this->uid)->find();
|
|
if (!$info) $this->error('藏品不存在');
|
|
if (!$info) $this->error('藏品不存在');
|
|
if ($info['status']==2) $this->error('藏品已转赠');
|
|
if ($info['status']==2) $this->error('藏品已转赠');
|
|
- // if($info['c_id'] == 8) $this->error('持有时间限制,无法转赠');
|
|
|
|
|
|
+ // if($info['c_id'] == 8) $this->error('持有时间限制,无法转赠');
|
|
$member = Db::name('store_member')->where('phone',$phone)->find();
|
|
$member = Db::name('store_member')->where('phone',$phone)->find();
|
|
if (!$member) $this->error('转赠用户不存在');
|
|
if (!$member) $this->error('转赠用户不存在');
|
|
|
|
|
|
@@ -997,8 +999,8 @@ class UserCenter extends Base
|
|
$where = ['m_id'=>$this->uid, 'type'=>3];
|
|
$where = ['m_id'=>$this->uid, 'type'=>3];
|
|
if(in_array($select_type,[0,1]))$where['pm'] = $select_type;
|
|
if(in_array($select_type,[0,1]))$where['pm'] = $select_type;
|
|
$count = Db::name('store_member_log')->where($where)->when($select_type,function ($query)use($select_type){
|
|
$count = Db::name('store_member_log')->where($where)->when($select_type,function ($query)use($select_type){
|
|
- if($select_type == 2 ) $query->whereIn('change_type','2,3');
|
|
|
|
- })->count();
|
|
|
|
|
|
+ if($select_type == 2 ) $query->whereIn('change_type','2,3');
|
|
|
|
+ })->count();
|
|
$list = Db::name('store_member_log')
|
|
$list = Db::name('store_member_log')
|
|
->field('id,pm,change,title,create_at,change_type')
|
|
->field('id,pm,change,title,create_at,change_type')
|
|
->where($where)
|
|
->where($where)
|
|
@@ -1020,7 +1022,7 @@ class UserCenter extends Base
|
|
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
- * @title 提现
|
|
|
|
|
|
+ * @title 系统余额提现
|
|
* @desc 提现
|
|
* @desc 提现
|
|
* @author Gavin
|
|
* @author Gavin
|
|
* @method POST
|
|
* @method POST
|
|
@@ -1028,20 +1030,13 @@ class UserCenter extends Base
|
|
* @url /api/User_center/withdraw
|
|
* @url /api/User_center/withdraw
|
|
* @header name:Authorization require:1 desc:Token
|
|
* @header name:Authorization require:1 desc:Token
|
|
*
|
|
*
|
|
- * @param name:money type:int default: desc:提现金额
|
|
|
|
- * @param name:withdraw_type type:string default:bank desc:提现方式:wx[微信],zfb[支付宝],bank[银行卡]
|
|
|
|
- * @param name:pay_password type:string default:-- desc:二级密码
|
|
|
|
- * @param name:cloud_password type:string default:-- desc:云钱包密码
|
|
|
|
- * @param name:source type:int require:0 default:10 desc:app传10,h5传16
|
|
|
|
- * @param name:random_key type:string require:0 default:10 desc:random_key
|
|
|
|
- * @return name:ret_code type:string default:0 desc:请求结果代码[0000:提现申请成功,8889:表示提现申请待确认成功,需要调用提现确认完成提现创单申请,8888:表示提现需要再次信息短信验证码校验]
|
|
|
|
- * @return name:token type:string default:0 desc:支付授权令牌,有效期30分钟。当交易需要二次验证的时候,需要通过token调用调用交易二次短信验证接口[/api/Cloud_wallet/validationSms]
|
|
|
|
- * @return name:txn_seqno type:string default:0 desc:商户系统唯一交易流水号,当交易需要二次验证的时候,需要传这个参数[/api/Cloud_wallet/validationSms]
|
|
|
|
- * @return name:total_amount type:float default:0 desc:订单总金额,当交易需要二次验证的时候,需要传这个参数[/api/Cloud_wallet/validationSms]
|
|
|
|
|
|
+ * @param name:money type:int default: desc:提现金额
|
|
|
|
+ * @param name:withdraw_type type:string default:bank desc:提现方式:wx[微信],zfb[支付宝],bank[银行卡]
|
|
|
|
+ * @param name:pay_password type:string default:wx desc:二级密码
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
public function withdraw(){
|
|
public function withdraw(){
|
|
- // $this->error('维护中,暂时关闭');
|
|
|
|
|
|
+ if(!checkAuth($this->uid)) $this->error('维护中.....');
|
|
if (redisSetNx('withdraw'.$this->uid,3)){
|
|
if (redisSetNx('withdraw'.$this->uid,3)){
|
|
$v = getConfigValue('withdraw_switch');
|
|
$v = getConfigValue('withdraw_switch');
|
|
if (!$v) $this->error('维护中,暂时关闭');
|
|
if (!$v) $this->error('维护中,暂时关闭');
|
|
@@ -1056,12 +1051,9 @@ class UserCenter extends Base
|
|
$withdraw_type = input('withdraw_type','bank');
|
|
$withdraw_type = input('withdraw_type','bank');
|
|
if($withdraw_type != 'bank') $this->error('提现方式错误'.$withdraw_type);
|
|
if($withdraw_type != 'bank') $this->error('提现方式错误'.$withdraw_type);
|
|
$pay_password = input('pay_password');
|
|
$pay_password = input('pay_password');
|
|
- $cloud_password = input('cloud_password');
|
|
|
|
- $source = input('source');
|
|
|
|
- $random_key = input('random_key');
|
|
|
|
if (!$money) $this->error('参数错误');
|
|
if (!$money) $this->error('参数错误');
|
|
$user = Db::name('store_member')->where('id',$this->uid)->find();
|
|
$user = Db::name('store_member')->where('id',$this->uid)->find();
|
|
- //if ($user['money'] < $money) $this->error('余额不足');
|
|
|
|
|
|
+ if ($user['money'] < $money) $this->error('余额不足');
|
|
//if ($user['second_password']!=md5($pay_password)) $this->error('密码错误');
|
|
//if ($user['second_password']!=md5($pay_password)) $this->error('密码错误');
|
|
$withdraw_min_price = getConfigValue('withdraw_min_price'); //最小提现金额
|
|
$withdraw_min_price = getConfigValue('withdraw_min_price'); //最小提现金额
|
|
$withdraw_max_price = getConfigValue('withdraw_max_price'); //最大提现金额
|
|
$withdraw_max_price = getConfigValue('withdraw_max_price'); //最大提现金额
|
|
@@ -1101,8 +1093,88 @@ class UserCenter extends Base
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
$id =Db::name('store_member_withdraw')->insertGetId($data);
|
|
$id =Db::name('store_member_withdraw')->insertGetId($data);
|
|
- // $res = memberMoneyChange($money,3,$this->uid,'余额提现',0,$id,2);
|
|
|
|
- // if(!$res) throw new Exception('提现失败');
|
|
|
|
|
|
+ $res = memberMoneyChange($money,3,$this->uid,'余额提现',0,$id,2);
|
|
|
|
+ if(!$res) throw new Exception('提现失败');
|
|
|
|
+ Db::commit();
|
|
|
|
+ }catch (\Exception $e) {
|
|
|
|
+ Db::rollback();
|
|
|
|
+ $this->error($e->getMessage());
|
|
|
|
+ }
|
|
|
|
+ DelRedisSetNx('withdraw'.$this->uid);
|
|
|
|
+ $this->success('提现申请成功,等待审核!');
|
|
|
|
+ }else{
|
|
|
|
+ $this->error('服务器繁忙,请稍后重试');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @title 云钱包余额提现
|
|
|
|
+ * @desc 提现
|
|
|
|
+ * @author Gavin
|
|
|
|
+ * @method POST
|
|
|
|
+ * @tag 编辑信息
|
|
|
|
+ * @url /api/User_center/cloudWalletWithdraw
|
|
|
|
+ * @header name:Authorization require:1 desc:Token
|
|
|
|
+ * @param name:money type:int default: desc:提现金额
|
|
|
|
+ * @param name:cloud_password type:string default:-- desc:云钱包密码
|
|
|
|
+ * @param name:source type:int require:0 default:10 desc:app传10,h5传16
|
|
|
|
+ * @param name:random_key type:string require:0 default:10 desc:random_key
|
|
|
|
+ * @return name:ret_code type:string default:0 desc:请求结果代码[0000:提现申请成功,8889:表示提现申请待确认成功,需要调用提现确认完成提现创单申请,8888:表示提现需要再次信息短信验证码校验]
|
|
|
|
+ * @return name:token type:string default:0 desc:支付授权令牌,有效期30分钟。当交易需要二次验证的时候,需要通过token调用调用交易二次短信验证接口[/api/Cloud_wallet/validationSms]
|
|
|
|
+ * @return name:txn_seqno type:string default:0 desc:商户系统唯一交易流水号,当交易需要二次验证的时候,需要传这个参数[/api/Cloud_wallet/validationSms]
|
|
|
|
+ * @return name:total_amount type:float default:0 desc:订单总金额,当交易需要二次验证的时候,需要传这个参数[/api/Cloud_wallet/validationSms]
|
|
|
|
+ *
|
|
|
|
+ */
|
|
|
|
+ public function cloudWalletWithdraw()
|
|
|
|
+ {
|
|
|
|
+ if(!checkAuth($this->uid)) $this->error('维护中.....');
|
|
|
|
+ if (redisSetNx('cloudWalletWithdraw'.$this->uid,3)){
|
|
|
|
+ $v = getConfigValue('withdraw_switch');
|
|
|
|
+ if (!$v) $this->error('维护中,暂时关闭');
|
|
|
|
+ $redis = new Redis(['select'=>2]);
|
|
|
|
+ $redis_value = $redis->get('cloudWalletWithdraw'.$this->uid);
|
|
|
|
+ if ($redis_value){
|
|
|
|
+ $this->error('请求过快,请稍后重试');
|
|
|
|
+ }else{
|
|
|
|
+ $redis->set('cloudWalletWithdraw'.$this->uid,1,3);
|
|
|
|
+ }
|
|
|
|
+ $money = input('money');
|
|
|
|
+ $withdraw_type = input('withdraw_type','bank');
|
|
|
|
+ if($withdraw_type != 'bank') $this->error('提现方式错误'.$withdraw_type);
|
|
|
|
+ $cloud_password = input('cloud_password');
|
|
|
|
+ $source = input('source');
|
|
|
|
+ $random_key = input('random_key');
|
|
|
|
+ if (!$money) $this->error('参数错误');
|
|
|
|
+ $user = Db::name('store_member')->where('id',$this->uid)->find();
|
|
|
|
+ $withdraw_min_price = getConfigValue('withdraw_min_price'); //最小提现金额
|
|
|
|
+ $withdraw_max_price = getConfigValue('withdraw_max_price'); //最大提现金额
|
|
|
|
+ $poundage_proportion = getConfigValue('poundage_proportion'); //手续费百分比
|
|
|
|
+ $discount = getMemberServiceCharge($this->uid);// 折扣
|
|
|
|
+ $poundage_proportion = bcmul($poundage_proportion,$discount);
|
|
|
|
+ if ($money < $withdraw_min_price) $this->error('最低提现'.$withdraw_min_price.'元');
|
|
|
|
+ if ($money > $withdraw_max_price) $this->error('最大提现'.$withdraw_max_price.'元');
|
|
|
|
+ if($withdraw_type == 'bank' && !$user['bank_num'])$this->error('请先绑定银行卡');
|
|
|
|
+ Db::startTrans();
|
|
|
|
+ try {
|
|
|
|
+ $data['mid'] = $this->uid;
|
|
|
|
+ $data['withdraw_type'] = $withdraw_type;
|
|
|
|
+ $order_no = get_order_sn();
|
|
|
|
+ $data['order_no'] = $order_no;
|
|
|
|
+ $data['price'] = $money;
|
|
|
|
+ $data['poundage_proportion'] = $poundage_proportion;
|
|
|
|
+ $proportion = sprintf("%.2f", $money*($poundage_proportion/100)); //四舍五入保留两位小数点
|
|
|
|
+ $data['proportion'] = $proportion;
|
|
|
|
+ $real_money = $money-$proportion;
|
|
|
|
+ $data['real_money'] = $real_money;
|
|
|
|
+ switch ($withdraw_type){
|
|
|
|
+ case 'bank':
|
|
|
|
+ $data['account_no'] = $user['bank_num'];
|
|
|
|
+ $data['account_name']=$user['bank_user'];
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ Db::name('cloud_wallet_withdraw')->insertGetId($data);
|
|
$risk_item = risk_item($user,'云钱包提现',$source);
|
|
$risk_item = risk_item($user,'云钱包提现',$source);
|
|
$cloud_res = LianLianPay::cloudWalletWithdrawal($this->uid,$money,$proportion,$user['bank_num'],$cloud_password,$risk_item,$random_key);
|
|
$cloud_res = LianLianPay::cloudWalletWithdrawal($this->uid,$money,$proportion,$user['bank_num'],$cloud_password,$risk_item,$random_key);
|
|
if(!in_array($cloud_res['ret_code'],['0000','8888','8889']) )throw new Exception($cloud_res['ret_msg']);
|
|
if(!in_array($cloud_res['ret_code'],['0000','8888','8889']) )throw new Exception($cloud_res['ret_msg']);
|
|
@@ -1111,12 +1183,11 @@ class UserCenter extends Base
|
|
Db::rollback();
|
|
Db::rollback();
|
|
$this->error($e->getMessage());
|
|
$this->error($e->getMessage());
|
|
}
|
|
}
|
|
- DelRedisSetNx('withdraw'.$this->uid);
|
|
|
|
|
|
+ DelRedisSetNx('cloudWalletWithdraw'.$this->uid);
|
|
$this->success('提现申请成功,等待审核!',$cloud_res);
|
|
$this->success('提现申请成功,等待审核!',$cloud_res);
|
|
}else{
|
|
}else{
|
|
$this->error('服务器繁忙,请稍后重试');
|
|
$this->error('服务器繁忙,请稍后重试');
|
|
}
|
|
}
|
|
-
|
|
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|