BalanceLogService.php 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | LARAVEL8.0 框架 [ LARAVEL ][ RXThinkCMF ]
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2017~2021 LARAVEL研发中心
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://www.laravel.cn
  8. // +----------------------------------------------------------------------
  9. // | Author: laravel开发员 <laravel.qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace App\Services\Api;
  12. use App\Models\AccountLogModel;
  13. use App\Models\ActionLogModel;
  14. use App\Models\BalanceLogModel;
  15. use App\Models\MemberBankModel;
  16. use App\Models\MemberModel;
  17. use App\Services\BaseService;
  18. use App\Services\ConfigService;
  19. use App\Services\RedisService;
  20. use Illuminate\Support\Facades\DB;
  21. /**
  22. * 余额管理-服务类
  23. * @author laravel开发员
  24. * @since 2020/11/11
  25. */
  26. class BalanceLogService extends BaseService
  27. {
  28. public static $instance = null;
  29. /**
  30. * 构造函数
  31. * @author laravel开发员
  32. * @since 2020/11/11
  33. * AccountService constructor.
  34. */
  35. public function __construct()
  36. {
  37. $this->model = new BalanceLogModel();
  38. }
  39. /**
  40. * 静态入口
  41. * @return static|null
  42. */
  43. public static function make()
  44. {
  45. if (!self::$instance) {
  46. self::$instance = (new static());
  47. }
  48. return self::$instance;
  49. }
  50. /**
  51. * @param $params
  52. * @param int $pageSize
  53. * @return array
  54. */
  55. public function getDataList($params, $pageSize = 15)
  56. {
  57. $query = $this->getQuery($params);
  58. $list = $query->select(['a.*'])
  59. ->orderBy('a.status','asc')
  60. ->orderBy('a.create_time','desc')
  61. ->orderBy('a.id','desc')
  62. ->paginate($pageSize > 0 ? $pageSize : 9999999);
  63. $list = $list? $list->toArray() :[];
  64. if($list){
  65. foreach($list['data'] as &$item){
  66. $item['create_time'] = $item['create_time']? datetime($item['create_time'],'Y-m-d H:i:s') : '';
  67. $item['time_text'] = $item['create_time']? datetime($item['create_time'],'Y年m月d日') : '';
  68. }
  69. }
  70. return [
  71. 'pageSize'=> $pageSize,
  72. 'total'=>isset($list['total'])? $list['total'] : 0,
  73. 'list'=> isset($list['data'])? $list['data'] : []
  74. ];
  75. }
  76. public function getQuery($params)
  77. {
  78. $where = ['a.mark' => 1];
  79. $status = isset($params['status'])? $params['status'] : 0;
  80. $type = isset($params['type'])? $params['type'] : 0;
  81. if($status>0){
  82. $where['a.status'] = $status;
  83. }
  84. if($type>0){
  85. $where['a.type'] = $type;
  86. }
  87. return $this->model->with(['member'])->from("balance_logs as a")
  88. ->leftJoin('member as b','b.id','=','a.user_id')
  89. ->where($where)
  90. ->where(function ($query) use($params) {
  91. $keyword = isset($params['keyword']) ? $params['keyword'] : '';
  92. $userId = isset($params['user_id'])? $params['user_id'] : 0;
  93. if($userId){
  94. $query->where('a.user_id',$userId);
  95. }
  96. if ($keyword) {
  97. $query->where(function($query) use($keyword){
  98. $query->where('b.nickname','like',"%{$keyword}%")
  99. ->orWhere('b.mobile','like',"%{$keyword}%")
  100. ->orWhere('b.realname','like',"%{$keyword}%");
  101. });
  102. }
  103. $orderNo = isset($params['order_no'])? trim($params['order_no']) : '';
  104. if($orderNo){
  105. $query->where(function($query) use($orderNo){
  106. $query->where('a.order_no','like',"%{$orderNo}%");
  107. });
  108. }
  109. $account = isset($params['account'])? trim($params['account']) : '';
  110. if($account){
  111. $query->where(function($query) use($account){
  112. $query->where('a.account','like',"%{$account}%");
  113. });
  114. }
  115. })
  116. ->where(function ($query) use($params){
  117. // 日期
  118. $date = isset($params['date']) ? $params['date'] : [];
  119. $start = isset($date[0])? $date[0] : '';
  120. $end = isset($date[1])? $date[1] : '';
  121. $end = $start>=$end? '' : $end;
  122. if ($start) {
  123. $query->where('a.create_time','>=', strtotime($start));
  124. }
  125. if($end){
  126. $query->where('a.create_time','<=', strtotime($end));
  127. }
  128. });
  129. }
  130. /**
  131. * 收入提现
  132. * @param $userId
  133. * @param $params
  134. * @return array|false
  135. */
  136. public function withdraw($userId, $params)
  137. {
  138. // 参数验证
  139. $accountType = isset($params['account_type']) && $params['account_type']? intval($params['account_type']) : 1;
  140. $money = isset($params['money'])? floatval($params['money']) : 0;
  141. $accountId = isset($params['account_id'])? intval($params['account_id']) : 0;
  142. if($money<=0){
  143. $this->error = '请输入提现金额';
  144. return false;
  145. }
  146. if($accountId<=0){
  147. $this->error = '请选择收款账户';
  148. return false;
  149. }
  150. $openWithdraw = ConfigService::make()->getConfigByCode('withdraw_open',1);
  151. if(!$openWithdraw){
  152. $this->error = 2304;
  153. return false;
  154. }
  155. $withdrawMin = ConfigService::make()->getConfigByCode('withdraw_min',0.1);
  156. if($withdrawMin>0 && $money < $withdrawMin){
  157. $this->error = lang(2305,['money'=>$withdrawMin]);
  158. return false;
  159. }
  160. // 锁
  161. $cacheLockKey = "caches:members:withdraw:{$userId}";
  162. if(RedisService::get($cacheLockKey)){
  163. $this->error = 1034;
  164. return false;
  165. }
  166. $accountInfo = MemberBankModel::where(['id'=> $accountId,'user_id'=>$userId,'mark'=>1])->first();
  167. $realname = isset($accountInfo['realname'])?$accountInfo['realname'] : '';
  168. $account = isset($accountInfo['account'])?$accountInfo['account'] : '';
  169. $accountName = isset($accountInfo['account_name'])?$accountInfo['account_name'] : '';
  170. $accountRemark = isset($accountInfo['account_remark'])?$accountInfo['account_remark'] : '';
  171. if(empty($accountInfo) || empty($realname) || empty($accountName) || empty($account)){
  172. $this->error = '抱歉,当前收款账户错误请更换后重试';
  173. return false;
  174. }
  175. // 判断用户账号状态
  176. RedisService::set($cacheLockKey, ['user_id'=>$userId,'params'=>$params], rand(10,20));
  177. $userInfo = MemberModel::where(['id'=>$userId,'mark'=>1])->select(['id','balance','status'])->first();
  178. $status = isset($userInfo['status'])? $userInfo['status'] : 0;
  179. $balance = isset($userInfo['balance'])? $userInfo['balance'] : 0;
  180. if(empty($userInfo) || $status != 1){
  181. $this->error = 1045;
  182. RedisService::clear($cacheLockKey);
  183. return false;
  184. }
  185. if($money > $balance){
  186. $this->error = '可提现金额不足';
  187. RedisService::clear($cacheLockKey);
  188. return false;
  189. }
  190. // 提现处理
  191. DB::beginTransaction();
  192. $updateData = ['balance'=>DB::raw("balance - {$money}"),'update_time'=>time()];
  193. // 会员账户
  194. if($accountType==1 && !MemberModel::where(['id'=> $userId])->update($updateData)){
  195. DB::rollBack();
  196. $this->error = '提现处理失败';
  197. RedisService::clear($cacheLockKey);
  198. return false;
  199. }
  200. $orderNo = get_order_num('JW');
  201. $order = [
  202. 'user_id'=> $userId,
  203. 'order_no'=> $orderNo,
  204. 'money'=> -$money,
  205. 'after_money'=> moneyFormat(max(0,$balance-$money), 2),
  206. 'type'=>2,
  207. 'account_type'=> $accountType,
  208. 'pay_type'=> 50,
  209. 'realname'=> $realname,
  210. 'account_name'=> $accountName,
  211. 'account'=> $account,
  212. 'account_remark'=> $accountRemark,
  213. 'date'=> date('Y-m-d'),
  214. 'create_time'=> time(),
  215. 'status'=>1,
  216. 'mark'=>1
  217. ];
  218. if(!$orderId = $this->model::insertGetId($order)){
  219. DB::rollBack();
  220. $this->error = '提现处理失败';
  221. RedisService::clear($cacheLockKey);
  222. return false;
  223. }
  224. $log = [
  225. 'user_id' => $userId,
  226. 'source_order_no' => $orderNo,
  227. 'type' => 4,
  228. 'money' => $money,
  229. 'after_money' => moneyFormat(max(0,$balance-$money), 2),
  230. 'date'=> date('Y-m-d'),
  231. 'create_time' => time(),
  232. 'remark' => "{$accountName}".'('.substr($account,-4,4).') '.format_name($realname),
  233. 'status' => 1,
  234. 'mark' => 1,
  235. ];
  236. if(!AccountLogModel::insertGetId($log)){
  237. DB::rollBack();
  238. $this->error = '提现处理失败';
  239. RedisService::clear($cacheLockKey);
  240. return false;
  241. }
  242. DB::commit();
  243. // 操作日志
  244. ActionLogModel::setRecord($userId,['type'=>2,'title'=>'余额提现','content'=>"姓名:{$realname},账号:{$accountName}/{$account}/{$accountRemark},提现{$money}元,单号:{$orderNo}",'module'=>'balanceLog']);
  245. ActionLogModel::record();
  246. $this->error = '提现申请成功,请耐心等候审核~';
  247. return ['id'=>$orderId,'money'=>$money];
  248. }
  249. }