UserExtract.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <?php
  2. /**
  3. *
  4. * @author: xaboy<365615158@qq.com>
  5. * @day: 2018/3/3
  6. */
  7. namespace app\models\user;
  8. use crmeb\basic\BaseModel;
  9. use crmeb\services\workerman\ChannelService;
  10. use crmeb\traits\ModelTrait;
  11. /**
  12. * TODO 用户提现
  13. * Class UserExtract
  14. * @package app\models\user
  15. */
  16. class UserExtract extends BaseModel
  17. {
  18. /**
  19. * 数据表主键
  20. * @var string
  21. */
  22. protected $pk = 'id';
  23. /**
  24. * 模型名称
  25. * @var string
  26. */
  27. protected $name = 'user_extract';
  28. use ModelTrait;
  29. //审核中
  30. const AUDIT_STATUS = 0;
  31. //未通过
  32. const FAIL_STATUS = -1;
  33. //已提现
  34. const SUCCESS_STATUS = 1;
  35. protected static $extractType = ['alipay', 'bank', 'weixin'];
  36. protected static $extractTypeMsg = ['alipay' => '支付宝', 'bank' => '银行卡', 'weixin' => '微信'];
  37. protected static $status = array(
  38. -1 => '未通过',
  39. 0 => '审核中',
  40. 1 => '已提现'
  41. );
  42. /**
  43. * 用户自主提现记录提现记录,后台执行审核
  44. * @param array $userInfo 用户个人信息
  45. * @param array $data 提现详细信息
  46. * @return bool
  47. */
  48. public static function userExtract($userInfo, $data)
  49. {
  50. // if(!in_array($data['extract_type'],self::$extractType))
  51. // return self::setErrorInfo('提现方式不存在');
  52. $userInfo = User::get($userInfo['uid']);
  53. // $extractPrice = $userInfo['brokerage_price'];
  54. // if($extractPrice < 0) return self::setErrorInfo('提现佣金不足'.$data['money']);
  55. $userMoney = UserMoney::initialUserMoney($userInfo['uid'], $data['money_type']);
  56. $money2 = UserMoney::initialUserMoney($userInfo['uid'], $data['service_type']);
  57. if ($data['money_type'] != $data['service_type']) {
  58. if ($data['money'] > $userMoney['money']) return self::setErrorInfo('可提现佣金不足');
  59. if ($data['service'] > $money2['money']) return self::setErrorInfo('用于支付手续费的' . init_money_type()[$data['service_type']] . '不足');
  60. } else {
  61. // if (bcadd($data['money'], $data['service'], 8) > $userMoney['money']) return app('json')->fail('可提现佣金不足');
  62. if ($data['money'] > $userMoney['money']) return self::setErrorInfo('可提现佣金不足');
  63. }
  64. if ($data['money'] > $userMoney['money']) return self::setErrorInfo('提现佣金不足' . $data['money']);
  65. if ($data['money'] <= 0) return self::setErrorInfo('提现佣金大于0');
  66. $balance = bcsub($userMoney['money'], $data['money'], 8);
  67. if ($balance < 0) $balance = 0;
  68. if ($data['money_type'] != $data['service_type']) {
  69. $data['extract_price'] = $data['money'];
  70. } else {
  71. $data['extract_price'] = bcsub($data['money'], $data['service'], 8);
  72. }
  73. $insertData = [
  74. 'uid' => $userInfo['uid'],
  75. 'extract_type' => $data['extract_type'] ?? '',
  76. 'extract_price' => $data['money'],
  77. 'add_time' => time(),
  78. 'balance' => $balance,
  79. 'money_type' => $data['money_type'],
  80. 'address' => $data['address'],
  81. 'service' => $data['service'],
  82. 'service_type' => $data['service_type'],
  83. 'real_get' => $data['extract_price'],
  84. ];
  85. // var_dump($insertData);
  86. // exit;
  87. // if (isset($data['name']) && strlen(trim($data['name']))) $insertData['real_name'] = $data['name'];
  88. // else $insertData['real_name'] = $userInfo['nickname'];
  89. // if (isset($data['cardnum'])) $insertData['bank_code'] = $data['cardnum'];
  90. // else $insertData['bank_code'] = '';
  91. // if (isset($data['bankname'])) $insertData['bank_address'] = $data['bankname'];
  92. // else $insertData['bank_address'] = '';
  93. // if (isset($data['weixin'])) $insertData['wechat'] = $data['weixin'];
  94. // else $insertData['wechat'] = $userInfo['nickname'];
  95. // if ($data['extract_type'] == 'alipay') {
  96. // if (!$data['alipay_code']) return self::setErrorInfo('请输入支付宝账号');
  97. // $insertData['alipay_code'] = $data['alipay_code'];
  98. // $mark = '使用支付宝提现' . $insertData['extract_price'] . '元';
  99. // } else if ($data['extract_type'] == 'bank') {
  100. // if (!$data['cardnum']) return self::setErrorInfo('请输入银行卡账号');
  101. // if (!$data['bankname']) return self::setErrorInfo('请输入开户行信息');
  102. // $mark = '使用银联卡' . $insertData['bank_code'] . '提现' . $insertData['extract_price'] . '元';
  103. // } else if ($data['extract_type'] == 'weixin') {
  104. // if (!$data['weixin']) return self::setErrorInfo('请输入微信账号');
  105. $mark = '提币' . $insertData['extract_price'] . init_money_type()[$data['money_type']];
  106. $mark2 = '提币' . $insertData['extract_price'] . init_money_type()[$data['money_type']] . '支付手续费' . $insertData['service'] . init_money_type()[$data['service_type']];
  107. // }
  108. self::beginTrans();
  109. try {
  110. $res1 = self::create($insertData);
  111. if (!$res1) return self::setErrorInfo('提现失败');
  112. // $res2 = User::edit(['brokerage_price' => $balance], $userInfo['uid'], 'uid');
  113. // $res3 = UserBill::expend('余额提现', $userInfo['uid'], 'now_money', 'extract', $data['money'], $res1['id'], $balance, $mark);
  114. $res = $res1 && ($data['service'] > 0 ? (UserMoney::expendMoney($userInfo['uid'], $data['service_type'], $data['service'], 'extract_service', '提币手续费', $mark2)) : true) && UserMoney::expendMoney($userInfo['uid'], $data['money_type'], $data['extract_price'], 'extract', '申请提币', $mark);
  115. if ($res) {
  116. self::commitTrans();
  117. // try {
  118. // ChannelService::instance()->send('WITHDRAW', ['id' => $res1->id]);
  119. // } catch (\Exception $e) {
  120. // }
  121. // event('AdminNewPush');
  122. //发送模板消息
  123. return $res1;
  124. } else return self::setErrorInfo('提币失败!');
  125. } catch (\Exception $e) {
  126. self::rollbackTrans();
  127. return self::setErrorInfo('提币失败!');
  128. }
  129. }
  130. /**
  131. * 获得用户最后一次提现信息
  132. * @param $openid
  133. * @return mixed
  134. */
  135. public static function userLastInfo($uid)
  136. {
  137. return self::where(compact('uid'))->order('add_time DESC')->find();
  138. }
  139. /**
  140. * 获得用户提现总金额
  141. * @param $uid
  142. * @return mixed
  143. */
  144. public static function userExtractTotalPrice($uid, $status = self::SUCCESS_STATUS)
  145. {
  146. return self::where('uid', $uid)->where('status', $status)->value('SUM(extract_price)') ?: 0;
  147. }
  148. /**
  149. * 用户提现记录列表
  150. * @param int $uid 用户uid
  151. * @param int $first 截取行数
  152. * @param int $limit 截取数
  153. * @return \think\Collection
  154. * @throws \think\db\exception\DataNotFoundException
  155. * @throws \think\db\exception\ModelNotFoundException
  156. * @throws \think\exception\DbException
  157. */
  158. public static function extractList($uid, $first = 0, $limit = 8)
  159. {
  160. $list = UserExtract::where('uid', $uid)->order('add_time desc')->limit($first, $limit)->select();
  161. foreach ($list as &$v) {
  162. $v['add_time'] = date('Y/m/d', $v['add_time']);
  163. }
  164. return $list;
  165. }
  166. /**
  167. * 获取累计已提现佣金
  168. * @param $uid
  169. * @return float
  170. */
  171. public static function extractSum($uid)
  172. {
  173. return self::where('uid', $uid)->where('status', 1)->sum('extract_price');
  174. }
  175. }