截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

WithdrawLogic.php 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\logic\AccountLogLogic;
  5. use app\common\model\{AccountLog, Withdraw, WithdrawApply};
  6. use app\common\model\user\User;
  7. use app\common\enum\WithdrawEnum;
  8. use app\common\server\ConfigServer;
  9. use think\facade\Db;
  10. use think\Exception;
  11. /***
  12. * Class WithdrawLogic 会员提现
  13. * @package app\api\logic
  14. */
  15. class WithdrawLogic extends Logic
  16. {
  17. /**
  18. * @notes 基础配置
  19. * @param $user_id
  20. * @return array
  21. * @throws \think\db\exception\DataNotFoundException
  22. * @throws \think\db\exception\DbException
  23. * @throws \think\db\exception\ModelNotFoundException
  24. * @author suny
  25. * @date 2021/7/13 6:26 下午
  26. */
  27. public static function config($user_id)
  28. {
  29. $user = User::where('id', $user_id)->find();
  30. $config = [
  31. 'able_withdraw' => $user['earnings'] ? $user['earnings'] : 0,
  32. 'min_withdraw' => ConfigServer::get('withdraw', 'min_withdraw', 0),//最低提现金额;
  33. 'max_withdraw' => ConfigServer::get('withdraw', 'max_withdraw', 0),//最高提现金额;
  34. 'poundage_percent' => ConfigServer::get('withdraw', 'poundage', 0),//提现手续费;
  35. ];
  36. $types = ConfigServer::get('withdraw', 'type', [1]); //提现方式,若未设置默认为提现方式为钱包
  37. // 封装提现方式
  38. $config['type'] = [];
  39. if ($types) {
  40. foreach ($types as $value) {
  41. $config['type'][] = [
  42. 'name' => WithdrawEnum::getTypeDesc($value),
  43. 'value' => $value
  44. ];
  45. }
  46. }
  47. return $config;
  48. }
  49. /**
  50. * @notes 申请提现
  51. * @param $user_id
  52. * @param $post
  53. * @return int|string
  54. * @throws Exception
  55. * @throws \think\exception\PDOException
  56. * @author suny
  57. * @date 2021/7/13 6:26 下午
  58. */
  59. public static function apply($user_id, $post)
  60. {
  61. Db::startTrans();
  62. try {
  63. //提现手续费
  64. $poundage = 0;
  65. if ($post['type'] != WithdrawEnum::TYPE_BALANCE) {
  66. $poundage_config = ConfigServer::get('withdraw', 'poundage', 0);
  67. $poundage = $post['money'] * $poundage_config / 100;
  68. }
  69. $data = [
  70. 'sn' => createSn('withdraw_apply', 'sn'),
  71. 'batch_no' => createSn('withdraw_apply', 'batch_no','SJZZ'),
  72. 'user_id' => $user_id,
  73. 'type' => $post['type'],
  74. 'account' => $post['account'] ?? '',
  75. 'real_name' => $post['real_name'] ?? '',
  76. 'money' => $post['money'],
  77. 'left_money' => $post['money'] - $poundage,
  78. 'money_qr_code' => $post['money_qr_code'] ?? '',
  79. 'remark' => $post['remark'] ?? '',
  80. 'bank' => $post['bank'] ?? '',
  81. 'subbank' => $post['subbank'] ?? '',
  82. 'poundage' => $poundage,
  83. 'status' => 1, // 待提现
  84. 'create_time' => time(),
  85. ];
  86. $withdraw_id = WithdrawApply::insertGetId($data);
  87. //提交申请后,扣减用户的佣金
  88. $user = User::find($user_id);
  89. $user->earnings = ['dec', $post['money']];
  90. $user->save();
  91. //增加佣金变动记录
  92. AccountLogLogic::AccountRecord(
  93. $user_id,
  94. $post['money'],
  95. 2,
  96. AccountLog::withdraw_dec_earnings,
  97. '',
  98. $withdraw_id,
  99. $data['sn']
  100. );
  101. Db::commit();
  102. return $withdraw_id;
  103. } catch (Exception $e) {
  104. Db::rollback();
  105. throw new Exception($e->getMessage());
  106. }
  107. }
  108. /**
  109. * @notes 提现记录
  110. * @param $user_id
  111. * @param $get
  112. * @param $page
  113. * @param $size
  114. * @return array
  115. * @throws \think\db\exception\DataNotFoundException
  116. * @throws \think\db\exception\DbException
  117. * @throws \think\db\exception\ModelNotFoundException
  118. * @author suny
  119. * @date 2021/7/13 6:26 下午
  120. */
  121. public static function records($user_id, $get, $page, $size)
  122. {
  123. $count = WithdrawApply
  124. ::where(['user_id' => $user_id])
  125. ->count();
  126. $lists = WithdrawApply::where(['user_id' => $user_id])
  127. ->order('create_time desc')
  128. ->select();
  129. foreach ($lists as &$item) {
  130. $item['desc'] = '提现至' . WithdrawEnum::getTypeDesc($item['type']);
  131. $item['status_text'] = WithdrawEnum::getStatusDesc($item['status']);
  132. }
  133. $data = [
  134. 'list' => $lists,
  135. 'page' => $page,
  136. 'size' => $size,
  137. 'count' => $count,
  138. 'more' => is_more($count, $page, $size)
  139. ];
  140. return $data;
  141. }
  142. /**
  143. * @notes 提现详情
  144. * @param $id
  145. * @param $user_id
  146. * @return array
  147. * @throws \think\db\exception\DataNotFoundException
  148. * @throws \think\db\exception\DbException
  149. * @throws \think\db\exception\ModelNotFoundException
  150. * @author suny
  151. * @date 2021/7/13 6:26 下午
  152. */
  153. public static function info($id, $user_id)
  154. {
  155. $info = WithdrawApply::field('status, sn, create_time, type, money, left_money, poundage')
  156. ->where(['id' => $id, 'user_id' => $user_id])
  157. ->find()->toArray();
  158. if (!$info) {
  159. return [];
  160. }
  161. $info['typeDesc'] = WithdrawEnum::getTypeDesc($info['type']);
  162. $info['statusDesc'] = WithdrawEnum::getStatusDesc($info['status']);
  163. return $info;
  164. }
  165. }