* @day: 2018/3/3 */ namespace app\models\user; use crmeb\basic\BaseModel; use crmeb\services\workerman\ChannelService; use crmeb\traits\ModelTrait; /** * TODO 用户提现 * Class UserExtract * @package app\models\user */ class UserExtract extends BaseModel { /** * 数据表主键 * @var string */ protected $pk = 'id'; /** * 模型名称 * @var string */ protected $name = 'user_extract'; use ModelTrait; //审核中 const AUDIT_STATUS = 0; //未通过 const FAIL_STATUS = -1; //已提现 const SUCCESS_STATUS = 1; protected static $extractType = ['alipay', 'bank', 'weixin']; protected static $extractTypeMsg = ['alipay' => '支付宝', 'bank' => '银行卡', 'weixin' => '微信']; protected static $status = array( -1 => '未通过', 0 => '审核中', 1 => '已提现' ); /** * 用户自主提现记录提现记录,后台执行审核 * @param array $userInfo 用户个人信息 * @param array $data 提现详细信息 * @return bool */ public static function userExtract($userInfo, $data) { if (!in_array($data['extract_type'], self::$extractType)) return self::setErrorInfo('提现方式不存在'); $userInfo = User::get($userInfo['uid']); $extractPrice = $userInfo['cash']; if ($extractPrice < 0) return self::setErrorInfo('提现佣金不足' . $data['money']); if ($data['money'] > $extractPrice) return self::setErrorInfo('提现佣金不足' . $data['money']); if ($data['money'] <= 0) return self::setErrorInfo('提现佣金大于0'); $balance = bcsub($userInfo['cash'], $data['money'], 2); if ($balance < 0) $balance = 0; $real_get_ratio = sys_config('extract_ratio', 100, true);//实际到账率 $insertData = [ 'uid' => $userInfo['uid'], 'extract_type' => $data['extract_type'], 'extract_price' => $data['money'], 'add_time' => time(), 'balance' => $balance, 'real_get' => bcmul(bcdiv($real_get_ratio, 100, 4), $data['money'], 2), 'status' => self::AUDIT_STATUS ]; if (isset($data['name']) && strlen(trim($data['name']))) $insertData['real_name'] = $data['name']; else $insertData['real_name'] = $userInfo['nickname']; if (isset($data['cardnum'])) $insertData['bank_code'] = $data['cardnum']; else $insertData['bank_code'] = ''; if (isset($data['bankname'])) $insertData['bank_address'] = $data['bankname']; else $insertData['bank_address'] = ''; if (isset($data['weixin'])) $insertData['wechat'] = $data['weixin']; else $insertData['wechat'] = $userInfo['nickname']; if ($data['extract_type'] == 'alipay') { if (!$data['alipay_code']) return self::setErrorInfo('请输入支付宝账号'); $insertData['alipay_code'] = $data['alipay_code']; $mark = '使用支付宝提现' . $insertData['extract_price'] . '元'; } else if ($data['extract_type'] == 'bank') { if (!$data['cardnum']) return self::setErrorInfo('请输入银行卡账号'); if (!$data['bankname']) return self::setErrorInfo('请输入开户行信息'); $mark = '使用银联卡' . $insertData['bank_code'] . '提现' . $insertData['extract_price'] . '元'; } else if ($data['extract_type'] == 'weixin') { if (!$data['weixin']) return self::setErrorInfo('请输入微信账号'); $mark = '使用微信提现' . $insertData['extract_price'] . '元'; } self::beginTrans(); try { $res1 = self::create($insertData); if (!$res1) return self::setErrorInfo('提现失败'); $res2 = User::edit(['cash' => $balance], $userInfo['uid'], 'uid'); $res3 = UserBill::expend('现金提现', $userInfo['uid'], 'cash', 'extract', $data['money'], $res1['id'], $balance, $mark); $res = $res2 && $res3; if ($res) { self::commitTrans(); // try { // ChannelService::instance()->send('WITHDRAW', ['id' => $res1->id]); // } catch (\Exception $e) { // } // event('AdminNewPush'); //发送模板消息 return true; } else return self::setErrorInfo('提现失败!'); } catch (\Exception $e) { self::rollbackTrans(); return self::setErrorInfo('提现失败!'); } } /** * 用户自主提现记录提现记录,后台执行审核 * @param array $userInfo 用户个人信息 * @param array $data 提现详细信息 * @return bool */ public static function userExchange($userInfo, $data) { $userInfo = User::get($userInfo['uid']); $extractPrice = $userInfo['brokerage_price']; if ($extractPrice < 0) return self::setErrorInfo('转换佣金不足' . $data['money']); if ($data['money'] > $extractPrice) return self::setErrorInfo('转换佣金不足' . $data['money']); if ($data['money'] <= 0) return self::setErrorInfo('转换佣金大于0'); $balance = bcsub($userInfo['brokerage_price'], $data['money'], 2); if ($balance < 0) $balance = 0; $real_get_ratio = sys_config('exchange_ratio', 100, true);//实际到账率 $get = bcmul(bcdiv($real_get_ratio, 100, 4), $data['money'], 2); self::beginTrans(); try { $res = true; $res2 = User::edit(['brokerage_price' => $balance], $userInfo['uid'], 'uid'); $res2 = $res2 && UserBill::expend('消费补贴券转现金', $userInfo['uid'], 'now_money', 'brokerage', $data['money'], 0, $balance, '消费补贴券转换现金'); $res3 = User::edit(['cash' => $userInfo['cash'] + (float)$get], $userInfo['uid'], 'uid'); $res3 = $res3 && UserBill::income('现金提现', $userInfo['uid'], 'cash', 'brokerage_exchange', $get, 0, $userInfo['cash'] + (float)$get, '消费补贴券转换现金,实际转换' . $get); if ($data['money'] > $get) { $num = $data['money'] - $get; $res = $res && UserBill::income('提现转换', $userInfo['uid'], 'integral', 'extract_get', $num, 0, $userInfo['integral'] + $num, '消费补贴券转换现金,其中部分消费补贴券转换为响亮积分' . $num); $res = $res && User::where('uid', $userInfo['uid'])->inc('integral', $num)->update(); } $res = $res && $res2 && $res3; if ($res) { self::commitTrans(); return true; } else return self::setErrorInfo('转换失败!'); } catch (\Exception $e) { self::rollbackTrans(); return self::setErrorInfo($e->getMessage()); } } /** * 获得用户最后一次提现信息 * @param $openid * @return mixed */ public static function userLastInfo($uid) { return self::where(compact('uid'))->order('add_time DESC')->find(); } /** * 获得用户提现总金额 * @param $uid * @return mixed */ public static function userExtractTotalPrice($uid, $status = self::SUCCESS_STATUS) { return self::where('uid', $uid)->where('status', $status)->value('SUM(extract_price)') ?: 0; } /** * 用户提现记录列表 * @param int $uid 用户uid * @param int $first 截取行数 * @param int $limit 截取数 * @return \think\Collection * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public static function extractList($uid, $first = 0, $limit = 8) { $list = UserExtract::where('uid', $uid)->order('add_time desc')->limit($first, $limit)->select(); foreach ($list as &$v) { $v['add_time'] = date('Y/m/d', $v['add_time']); } return $list; } /** * 获取累计已提现佣金 * @param $uid * @return float */ public static function extractSum($uid) { return self::where('uid', $uid)->where('status', 1)->sum('extract_price'); } }