UserExtract.php 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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['cash'];
  54. if ($extractPrice < 0) return self::setErrorInfo('提现佣金不足' . $data['money']);
  55. if ($data['money'] > $extractPrice) return self::setErrorInfo('提现佣金不足' . $data['money']);
  56. if ($data['money'] <= 0) return self::setErrorInfo('提现佣金大于0');
  57. $balance = bcsub($userInfo['cash'], $data['money'], 2);
  58. if ($balance < 0) $balance = 0;
  59. $real_get_ratio = sys_config('extract_ratio', 100, true);//实际到账率
  60. $insertData = [
  61. 'uid' => $userInfo['uid'],
  62. 'extract_type' => $data['extract_type'],
  63. 'extract_price' => $data['money'],
  64. 'add_time' => time(),
  65. 'balance' => $balance,
  66. 'real_get' => bcmul(bcdiv($real_get_ratio, 100, 4), $data['money'], 2),
  67. 'status' => self::AUDIT_STATUS
  68. ];
  69. if (isset($data['name']) && strlen(trim($data['name']))) $insertData['real_name'] = $data['name'];
  70. else $insertData['real_name'] = $userInfo['nickname'];
  71. if (isset($data['cardnum'])) $insertData['bank_code'] = $data['cardnum'];
  72. else $insertData['bank_code'] = '';
  73. if (isset($data['bankname'])) $insertData['bank_address'] = $data['bankname'];
  74. else $insertData['bank_address'] = '';
  75. if (isset($data['weixin'])) $insertData['wechat'] = $data['weixin'];
  76. else $insertData['wechat'] = $userInfo['nickname'];
  77. if ($data['extract_type'] == 'alipay') {
  78. if (!$data['alipay_code']) return self::setErrorInfo('请输入支付宝账号');
  79. $insertData['alipay_code'] = $data['alipay_code'];
  80. $mark = '使用支付宝提现' . $insertData['extract_price'] . '元';
  81. } else if ($data['extract_type'] == 'bank') {
  82. if (!$data['cardnum']) return self::setErrorInfo('请输入银行卡账号');
  83. if (!$data['bankname']) return self::setErrorInfo('请输入开户行信息');
  84. $mark = '使用银联卡' . $insertData['bank_code'] . '提现' . $insertData['extract_price'] . '元';
  85. } else if ($data['extract_type'] == 'weixin') {
  86. if (!$data['weixin']) return self::setErrorInfo('请输入微信账号');
  87. $mark = '使用微信提现' . $insertData['extract_price'] . '元';
  88. }
  89. self::beginTrans();
  90. try {
  91. $res1 = self::create($insertData);
  92. if (!$res1) return self::setErrorInfo('提现失败');
  93. $res2 = User::edit(['cash' => $balance], $userInfo['uid'], 'uid');
  94. $res3 = UserBill::expend('现金提现', $userInfo['uid'], 'cash', 'extract', $data['money'], $res1['id'], $balance, $mark);
  95. $res = $res2 && $res3;
  96. if ($res) {
  97. self::commitTrans();
  98. // try {
  99. // ChannelService::instance()->send('WITHDRAW', ['id' => $res1->id]);
  100. // } catch (\Exception $e) {
  101. // }
  102. // event('AdminNewPush');
  103. //发送模板消息
  104. return true;
  105. } else return self::setErrorInfo('提现失败!');
  106. } catch (\Exception $e) {
  107. self::rollbackTrans();
  108. return self::setErrorInfo('提现失败!');
  109. }
  110. }
  111. /**
  112. * 用户自主提现记录提现记录,后台执行审核
  113. * @param array $userInfo 用户个人信息
  114. * @param array $data 提现详细信息
  115. * @return bool
  116. */
  117. public static function userExchange($userInfo, $data)
  118. {
  119. $userInfo = User::get($userInfo['uid']);
  120. $extractPrice = $userInfo['brokerage_price'];
  121. if ($extractPrice < 0) return self::setErrorInfo('转换佣金不足' . $data['money']);
  122. if ($data['money'] > $extractPrice) return self::setErrorInfo('转换佣金不足' . $data['money']);
  123. if ($data['money'] <= 0) return self::setErrorInfo('转换佣金大于0');
  124. $balance = bcsub($userInfo['brokerage_price'], $data['money'], 2);
  125. if ($balance < 0) $balance = 0;
  126. $real_get_ratio = sys_config('exchange_ratio', 100, true);//实际到账率
  127. $get = bcmul(bcdiv($real_get_ratio, 100, 4), $data['money'], 2);
  128. self::beginTrans();
  129. try {
  130. $res = true;
  131. $res2 = User::edit(['brokerage_price' => $balance], $userInfo['uid'], 'uid');
  132. $res2 = $res2 && UserBill::expend('消费补贴券转现金', $userInfo['uid'], 'now_money', 'brokerage', $data['money'], 0, $balance, '消费补贴券转换现金');
  133. $res3 = User::edit(['cash' => $userInfo['cash'] + (float)$get], $userInfo['uid'], 'uid');
  134. $res3 = $res3 && UserBill::income('现金提现', $userInfo['uid'], 'cash', 'brokerage_exchange', $get, 0, $userInfo['cash'] + (float)$get, '消费补贴券转换现金,实际转换' . $get);
  135. if ($data['money'] > $get) {
  136. $num = $data['money'] - $get;
  137. $res = $res && UserBill::income('提现转换', $userInfo['uid'], 'integral', 'extract_get', $num, 0, $userInfo['integral'] + $num, '消费补贴券转换现金,其中部分消费补贴券转换为响亮积分' . $num);
  138. $res = $res && User::where('uid', $userInfo['uid'])->inc('integral', $num)->update();
  139. }
  140. $res = $res && $res2 && $res3;
  141. if ($res) {
  142. self::commitTrans();
  143. return true;
  144. } else return self::setErrorInfo('转换失败!');
  145. } catch (\Exception $e) {
  146. self::rollbackTrans();
  147. return self::setErrorInfo($e->getMessage());
  148. }
  149. }
  150. /**
  151. * 获得用户最后一次提现信息
  152. * @param $openid
  153. * @return mixed
  154. */
  155. public static function userLastInfo($uid)
  156. {
  157. return self::where(compact('uid'))->order('add_time DESC')->find();
  158. }
  159. /**
  160. * 获得用户提现总金额
  161. * @param $uid
  162. * @return mixed
  163. */
  164. public static function userExtractTotalPrice($uid, $status = self::SUCCESS_STATUS)
  165. {
  166. return self::where('uid', $uid)->where('status', $status)->value('SUM(extract_price)') ?: 0;
  167. }
  168. /**
  169. * 用户提现记录列表
  170. * @param int $uid 用户uid
  171. * @param int $first 截取行数
  172. * @param int $limit 截取数
  173. * @return \think\Collection
  174. * @throws \think\db\exception\DataNotFoundException
  175. * @throws \think\db\exception\ModelNotFoundException
  176. * @throws \think\exception\DbException
  177. */
  178. public static function extractList($uid, $first = 0, $limit = 8)
  179. {
  180. $list = UserExtract::where('uid', $uid)->order('add_time desc')->limit($first, $limit)->select();
  181. foreach ($list as &$v) {
  182. $v['add_time'] = date('Y/m/d', $v['add_time']);
  183. }
  184. return $list;
  185. }
  186. /**
  187. * 获取累计已提现佣金
  188. * @param $uid
  189. * @return float
  190. */
  191. public static function extractSum($uid)
  192. {
  193. return self::where('uid', $uid)->where('status', 1)->sum('extract_price');
  194. }
  195. }