|
@@ -41,7 +41,7 @@ class Recharge extends Base
|
|
|
*/
|
|
|
public function voucher()
|
|
|
{
|
|
|
- //if($this->uid != 73) $this->error('暂未开通');
|
|
|
+ if(!checkAuth($this->uid)) $this->error('维护中.....');
|
|
|
if (redisSetNx($this->request->action().$this->uid,3)) {
|
|
|
$money = input('post.money',0);
|
|
|
$pay_type = input('post.pay_type','sd_rapid');
|
|
@@ -49,7 +49,8 @@ class Recharge extends Base
|
|
|
$typecode = $from == 1 ? 4:5;
|
|
|
if($money <=0 ) $this->error('充值金额有误!');
|
|
|
$money = bcadd($money,0,2);
|
|
|
- //if($money < 10 )$this->error('最低充值10元!');
|
|
|
+ if($money < 10 && $this->uid != 73)$this->error('最低充值10元!');
|
|
|
+ if($pay_type != 'll')$this->error('维护中,请选择其他支付方式');
|
|
|
$user = Db::name('store_member')->where('id',$this->uid)->find();
|
|
|
if(!$user['true_name'] || !$user['id_card']) $this->error('请实名认证,在进行订单支付');
|
|
|
Db::startTrans();
|
|
@@ -102,15 +103,13 @@ class Recharge extends Base
|
|
|
case 'll':
|
|
|
$notify_url = 'https://'.$_SERVER['HTTP_HOST'] . '/api/Pay/lianLianNotify';
|
|
|
$return_url ='https://'.$_SERVER['HTTP_HOST']."/h5/pages/mine/mine?id={$order_id}&orderNo={$voucher_order['order_no']}";//回调地址
|
|
|
- $risk_item= risk_item($user,'余额充值',$from == 1 ? 16 : 10);
|
|
|
- $payeeInfo =[[
|
|
|
+ $risk_item= risk_item($user,'订单支付',$from == 1 ? 16 : 10);
|
|
|
+ $res= LianLianPay::cashierPay($voucher_order['order_no'],$money,$this->uid,$notify_url,$return_url,'余额充值',[[
|
|
|
'payee_id'=>OID_PARTNER,
|
|
|
'payee_type' => 'MERCHANT',
|
|
|
'payee_amount' => $money,
|
|
|
- ]];
|
|
|
- $res= LianLianPay::cloudWalletRecharge($voucher_order['order_no'],$money,$this->uid,$notify_url,$return_url,'余额充值',$risk_item);
|
|
|
+ ]],$risk_item);
|
|
|
$retrun_data = $res['pay_result'];
|
|
|
- // $retrun_data['request_params'] = $res['request_params'];
|
|
|
break;
|
|
|
}
|
|
|
Db::commit();
|
|
@@ -128,4 +127,67 @@ class Recharge extends Base
|
|
|
}
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * @title 云钱包余额充值
|
|
|
+ * @desc 云钱包余额充值
|
|
|
+ * @author Qc
|
|
|
+ * @url /api/Recharge/cloudWalletVoucher
|
|
|
+ * @method POST
|
|
|
+ * @header name:Authorization require:1 desc:Token
|
|
|
+ * @param name:money type:int require:1 default:1 desc:充值金额
|
|
|
+ * @param name:from type:int require:1 default1 desc:1:h5,2:app[Android],3:app[ios]
|
|
|
+ * @return name:order_no type:string default:0 desc:支付单号
|
|
|
+ * @return name:id type:int default:0 desc:支付订单id
|
|
|
+ * @return name:extend type:int default:0 desc:用户id
|
|
|
+ * @return name:pay type:array default:0 desc:支付信息
|
|
|
+ * @return name:pay.body type:array default:0 desc:支付信息
|
|
|
+ * @return name:pay.totalAmount type:string default:0 desc:支付金额【000000010000是100元】
|
|
|
+ * @return name:pay.orderCode type:string default:0 desc:支付单号
|
|
|
+ * @return name:pay.credential type:string default:0 desc:正书
|
|
|
+ */
|
|
|
+ public function cloudWalletVoucher()
|
|
|
+ {
|
|
|
+ if(!checkAuth($this->uid)) $this->error('维护中.....');
|
|
|
+ if (redisSetNx($this->request->action().$this->uid,3)) {
|
|
|
+ $money = input('post.money',0);
|
|
|
+ $from = input('post.from',1);
|
|
|
+ if($money <=0 ) $this->error('充值金额有误!');
|
|
|
+ $money = bcadd($money,0,2);
|
|
|
+ $user = Db::name('store_member')->where('id',$this->uid)->find();
|
|
|
+ if(!$user['true_name'] || !$user['id_card']) $this->error('请实名认证,在进行订单支付');
|
|
|
+ Db::startTrans();
|
|
|
+ try{
|
|
|
+ $voucher_order = [
|
|
|
+ 'mid' => $this->uid ,
|
|
|
+ 'total_price' => $money,
|
|
|
+ 'order_no' =>get_order_sn(),
|
|
|
+ 'pay_no' =>get_order_sn(),
|
|
|
+ 'create_at' => date("Y-m-d H:i:s"),
|
|
|
+ 'pay_type' => 'll',
|
|
|
+ 'ext' => json_encode(['name'=>$user['true_name'],'phone'=>$user['phone'],'id_card'=>$user['id_card']])
|
|
|
+ ];
|
|
|
+ $order_id = Db::table('cloud_wallet_order')->insertGetId($voucher_order);
|
|
|
+ $notify_url = 'https://'.$_SERVER['HTTP_HOST'] . '/api/Notify/cloudWalletNotify';
|
|
|
+ $return_url ='https://'.$_SERVER['HTTP_HOST']."/h5/pages/mine/mine?id={$order_id}&orderNo={$voucher_order['order_no']}";//回调地址
|
|
|
+ $risk_item= risk_item($user,'余额充值',$from == 1 ? 16 : 10);
|
|
|
+ $res= LianLianPay::cloudWalletRecharge($voucher_order['order_no'],$money,$this->uid,$notify_url,$return_url,'余额充值',$risk_item);
|
|
|
+ $retrun_data = $res['pay_result'];
|
|
|
+ Db::commit();
|
|
|
+ }catch (\Exception $e){
|
|
|
+ Db::rollback();
|
|
|
+ DelRedisSetNx($this->request->action().$this->uid);
|
|
|
+ $this->error($e->getMessage());
|
|
|
+ }
|
|
|
+ DelRedisSetNx($this->request->action().$this->uid);
|
|
|
+ $this->success('ok',$retrun_data);
|
|
|
+ }else{
|
|
|
+ $this->error('服务器繁忙');
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|