截流自动化的商城平台
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 32KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928
  1. <?php
  2. namespace app\admin\logic\finance;
  3. use app\admin\logic\WechatMerchantTransferLogic;
  4. use app\common\basics\Logic;
  5. use app\common\model\RechargeOrder;
  6. use app\common\model\WithdrawApply;
  7. use app\common\enum\WithdrawEnum;
  8. use app\common\server\ConfigServer;
  9. use app\common\server\ExportExcelServer;
  10. use app\common\server\UrlServer;
  11. use app\common\model\user\User;
  12. use app\common\logic\AccountLogLogic;
  13. use app\common\model\AccountLog;
  14. use app\admin\logic\WechatCorporatePaymentLogic;
  15. use think\facade\Db;
  16. use think\Exception;
  17. /**
  18. * Class WithdrawLogic
  19. * @package app\admin\logic\finance
  20. */
  21. class WithdrawLogic extends Logic
  22. {
  23. /**
  24. * @notes 会员佣金提现列表
  25. * @param $get
  26. * @return array
  27. * @throws \think\db\exception\DataNotFoundException
  28. * @throws \think\db\exception\DbException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. * @author suny
  31. * @date 2021/7/14 10:00 上午
  32. */
  33. public static function lists($get, $is_export = false)
  34. {
  35. $where = [];
  36. // 会员信息
  37. if (!empty($get['search_key']) && !empty($get['keyword'])) {
  38. $keyword = $get['keyword'];
  39. if ($get['search_key'] == 'user_sn') {
  40. $where[] = ['u.sn', '=', $keyword];
  41. } elseif ($get['search_key'] == 'nickname') {
  42. $where[] = ['u.nickname', 'like', '%' . $keyword . '%'];
  43. }
  44. }
  45. //提现单号
  46. if (isset($get['withdraw_sn']) && $get['withdraw_sn'] != '') {
  47. $where[] = ['w.sn', '=', $get['withdraw_sn']];
  48. }
  49. //提现方式
  50. if (isset($get['type']) && $get['type'] != '') {
  51. $where[] = ['w.type', '=', $get['type']];
  52. }
  53. //提现状态
  54. if (isset($get['status']) && $get['status'] != '') {
  55. $where[] = ['status', '=', $get['status']];
  56. }
  57. if (empty($get['start_time']) && empty($get['end_time'])) {
  58. $where[] = ['w.create_time', '>=', strtotime(date("Y-m-d", time()))];
  59. $where[] = ['w.create_time', '<=', strtotime(date("Y-m-d", time())) + 86399];
  60. }
  61. // 提现时间
  62. if (isset($get['start_time']) && $get['start_time'] && isset($get['end_time']) && $get['end_time']) {
  63. $where[] = ['w.create_time', 'between', [strtotime($get['start_time']), strtotime($get['end_time'])]];
  64. // }else{
  65. //// $where[] = ['w.create_time', 'between', Time::today()];
  66. }
  67. // 导出
  68. if (true === $is_export) {
  69. return self::withdrawExport($where);
  70. }
  71. $lists = WithdrawApply::alias('w')
  72. ->field('w.*, u.nickname,u.avatar, u.sn as user_sn, u.mobile, ul.name as user_level_name')
  73. ->with('user')
  74. ->leftJoin('user u', 'u.id = w.user_id')
  75. ->leftJoin('user_level ul', 'ul.id = u.level')
  76. ->where($where)
  77. ->page($get['page'], $get['limit'])
  78. ->order('w.id desc')
  79. ->select();
  80. $count = WithdrawApply::alias('w')
  81. ->field('w.*, u.nickname,u.avatar, u.sn as user_sn, u.mobile, ul.name as user_level_name')
  82. ->leftJoin('user u', 'u.id = w.user_id')
  83. ->leftJoin('user_level ul', 'ul.id = u.level')
  84. ->where($where)
  85. ->order('w.id desc')
  86. ->count();
  87. foreach ($lists as &$item) {
  88. if (empty($item['user'])) {
  89. // 用户不存在
  90. $user = [
  91. 'avatar' => '',
  92. 'sn' => '-',
  93. 'nickname' => '-',
  94. ];
  95. } else {
  96. $user = $item['user'];
  97. }
  98. $item['type_text'] = WithdrawEnum::getTypeDesc($item['type']);
  99. $item['status_text'] = WithdrawEnum::getStatusDesc($item['status']);
  100. $item['avatar'] = UrlServer::getFileUrl($item['avatar']);
  101. $user['avatar'] = UrlServer::getFileUrl($user['avatar']);
  102. $item['user_level_name'] = $item['user_level_name'] ? $item['user_level_name'] : '无等级';
  103. $user['user_level_name'] = $item['user_level_name'];
  104. // 通过中间变量$user解决Indirect modification of overloaded element报错
  105. $item['user'] = $user;
  106. }
  107. return ['count' => $count, 'lists' => $lists];
  108. }
  109. /**
  110. * @notes 数据汇总
  111. * @return array
  112. * @author suny
  113. * @date 2021/7/14 10:01 上午
  114. */
  115. public static function summary()
  116. {
  117. $model = new WithdrawApply();
  118. $successWithdraw = $model->where(['status' => WithdrawEnum::STATUS_SUCCESS])->sum('money');
  119. $handleWithdraw = $model->where(['status' => WithdrawEnum::STATUS_ING])->sum('money');
  120. $totalEarnings = (new User())->where(['del' => 0])->sum('earnings');
  121. return ['successWithdraw' => $successWithdraw, 'handleWithdraw' => $handleWithdraw, 'totalEarnings' => $totalEarnings];
  122. }
  123. /**
  124. * @notes 佣金明细
  125. * @param $get
  126. * @return array
  127. * @throws \think\db\exception\DataNotFoundException
  128. * @throws \think\db\exception\DbException
  129. * @throws \think\db\exception\ModelNotFoundException
  130. * @author suny
  131. * @date 2021/7/14 10:01 上午
  132. */
  133. public static function commission($get, $is_export = false)
  134. {
  135. $where = [];
  136. // 明细类型
  137. $source_type = AccountLog::earnings_change;
  138. if (isset($get['source_type']) && !empty($get['source_type'])) {
  139. $where[] = ['a.source_type', '=', $get['source_type']];
  140. } else {
  141. $where[] = ['a.source_type', 'in', $source_type];
  142. }
  143. //明细搜索
  144. if (!empty($get['search_key']) && !empty($get['keyword'])) {
  145. $keyword = $get['keyword'];
  146. switch ($get['search_key']) {
  147. case 'user_sn' :
  148. $where[] = ['u.sn', '=', $keyword];
  149. break;
  150. case 'nickname' :
  151. $where[] = ['u.nickname', 'like', '%' . $keyword . '%'];
  152. break;
  153. }
  154. }
  155. if (empty($get['start_time']) && empty($get['end_time'])) {
  156. $where[] = ['a.create_time', '>=', strtotime(date("Y-m-d", time()))];
  157. $where[] = ['a.create_time', '<=', strtotime(date("Y-m-d", time())) + 86399];
  158. }
  159. //明细时间
  160. if (isset($get['start_time']) && $get['start_time'] != '') {
  161. $where[] = ['a.create_time', '>=', strtotime($get['start_time'])];
  162. }
  163. if (isset($get['end_time']) && $get['end_time'] != '') {
  164. $where[] = ['a.create_time', '<=', strtotime($get['end_time'])];
  165. }
  166. // 导出
  167. if (true === $is_export) {
  168. return self::commissionExport($where);
  169. }
  170. $lists = AccountLog::alias('a')
  171. ->field('a.*,u.nickname,u.sn as user_sn,u.mobile,w.sn as withdraw_sn')
  172. ->join('user u', 'u.id = a.user_id')
  173. ->leftjoin('withdraw_apply w', 'w.sn = a.source_sn')
  174. ->where($where)
  175. ->page($get['page'], $get['limit'])
  176. ->order('a.id desc')
  177. ->select();
  178. $count = AccountLog::alias('a')
  179. ->field('a.*,u.nickname,u.sn as user_sn,u.mobile,w.sn as withdraw_sn')
  180. ->join('user u', 'u.id = a.user_id')
  181. ->leftjoin('withdraw_apply w', 'w.sn = a.source_sn')
  182. ->where($where)
  183. ->order('a.id desc')
  184. ->count();
  185. return ['count' => $count, 'lists' => $lists];
  186. }
  187. /**
  188. * @notes 账户明细
  189. * @param $get
  190. * @return array
  191. * @throws \think\db\exception\DataNotFoundException
  192. * @throws \think\db\exception\DbException
  193. * @throws \think\db\exception\ModelNotFoundException
  194. * @author suny
  195. * @date 2021/7/14 10:01 上午
  196. */
  197. public static function account($get, $is_export = false)
  198. {
  199. $where = [];
  200. // 明细类型
  201. $source_type = AccountLog::money_change;
  202. if (isset($get['type']) && !empty($get['type'])) {
  203. switch ($get['type']) {
  204. case 'admin_add_money' :
  205. $type = AccountLog::admin_add_money;
  206. break;
  207. case 'admin_reduce_money' :
  208. $type = AccountLog::admin_reduce_money;
  209. break;
  210. case 'recharge_money' :
  211. $type = AccountLog::recharge_money;
  212. break;
  213. case 'balance_pay_order' :
  214. $type = AccountLog::balance_pay_order;
  215. break;
  216. case 'cancel_order_refund' :
  217. $type = AccountLog::cancel_order_refund;
  218. break;
  219. case 'after_sale_refund' :
  220. $type = AccountLog::after_sale_refund;
  221. break;
  222. case 'withdraw_to_balance' :
  223. $type = AccountLog::withdraw_to_balance;
  224. break;
  225. case 'user_transfer_inc_balance' :
  226. $type = AccountLog::user_transfer_inc_balance;
  227. break;
  228. case 'user_transfer_dec_balance' :
  229. $type = AccountLog::user_transfer_dec_balance;
  230. break;
  231. case 'integral_order_inc_balance' :
  232. $type = AccountLog::integral_order_inc_balance;
  233. break;
  234. case 'integral_order_dec_balance' :
  235. $type = AccountLog::integral_order_dec_balance;
  236. break;
  237. }
  238. $where[] = ['a.source_type', '=', $type];
  239. } else {
  240. $where[] = ['a.source_type', 'in', $source_type];
  241. }
  242. //明细搜索
  243. if (!empty($get['search_key']) && !empty($get['keyword'])) {
  244. $keyword = $get['keyword'];
  245. switch ($get['search_key']) {
  246. case 'user_sn' :
  247. $where[] = ['u.sn', '=', $keyword];
  248. break;
  249. case 'nickname' :
  250. $where[] = ['u.nickname', 'like', '%' . $keyword . '%'];
  251. break;
  252. }
  253. }
  254. if (empty($get['start_time']) && empty($get['end_time'])) {
  255. $where[] = ['a.create_time', '>=', strtotime(date("Y-m-d", time()))];
  256. $where[] = ['a.create_time', '<=', strtotime(date("Y-m-d", time())) + 86399];
  257. }
  258. //明细时间
  259. if (isset($get['start_time']) && $get['start_time'] != '') {
  260. $where[] = ['a.create_time', '>=', strtotime($get['start_time'])];
  261. }
  262. if (isset($get['end_time']) && $get['end_time'] != '') {
  263. $where[] = ['a.create_time', '<=', strtotime($get['end_time'])];
  264. }
  265. // 导出
  266. if (true === $is_export) {
  267. return self::accountExport($where);
  268. }
  269. $lists = AccountLog::alias('a')
  270. ->field('a.*,u.nickname,u.sn as user_sn,u.mobile')
  271. ->join('user u', 'u.id = a.user_id')
  272. ->where($where)
  273. ->page($get['page'], $get['limit'])
  274. ->order('a.id desc')
  275. ->select();
  276. $count = AccountLog::alias('a')
  277. ->field('a.*,u.nickname,u.sn as user_sn,u.mobile')
  278. ->join('user u', 'u.id = a.user_id')
  279. ->where($where)
  280. ->order('a.id desc')
  281. ->count();
  282. return ['count' => $count, 'lists' => $lists];
  283. }
  284. /**
  285. * @notes 充值明细
  286. * @param $get
  287. * @return array
  288. * @throws \think\db\exception\DataNotFoundException
  289. * @throws \think\db\exception\DbException
  290. * @throws \think\db\exception\ModelNotFoundException
  291. * @author suny
  292. * @date 2021/7/14 10:01 上午
  293. */
  294. public static function recharge($get, $is_export = false)
  295. {
  296. $where = [];
  297. //明细搜索
  298. if (isset($get['search_key']) && !empty($get['search_key'])) {
  299. $keyword = $get['keyword'];
  300. switch ($get['search_key']) {
  301. case 'nickname' :
  302. $where[] = ['u.nickname', 'like', '%' . $keyword . '%'];
  303. break;
  304. case 'order_sn' :
  305. $where[] = ['order_sn', '=', $keyword];
  306. break;
  307. case 'user_mobile' :
  308. $where[] = ['u.mobile', '=', $keyword];
  309. break;
  310. }
  311. }
  312. //订单来源
  313. if (isset($get['order_source']) && $get['order_source'] != '') {
  314. $where[] = ['r.order_source', '=', $get['order_source']];
  315. }
  316. //订单状态
  317. if (isset($get['pay_status']) && $get['pay_status'] != '') {
  318. $where[] = ['r.pay_status', '=', $get['pay_status']];
  319. }
  320. //支付方式
  321. if (isset($get['pay_way']) && $get['pay_way'] != '') {
  322. $where[] = ['r.pay_way', '=', $get['pay_way']];
  323. }
  324. if (empty($get['start_time']) && empty($get['end_time'])) {
  325. $where[] = ['r.create_time', '>=', strtotime(date("Y-m-d", time()))];
  326. $where[] = ['r.create_time', '<=', strtotime(date("Y-m-d", time())) + 86399];
  327. }
  328. //明细开始时间
  329. if (isset($get['start_time']) && $get['start_time'] != '') {
  330. $where[] = ['r.create_time', '>=', strtotime($get['start_time'])];
  331. }
  332. //明细结束时间
  333. if (isset($get['end_time']) && $get['end_time'] != '') {
  334. $where[] = ['r.create_time', '<=', strtotime($get['end_time'])];
  335. }
  336. // 导出
  337. if (true === $is_export) {
  338. return self::rechargeExport($where);
  339. }
  340. $lists = RechargeOrder::alias('r')
  341. ->field('r.*,u.id,u.nickname,u.mobile')
  342. ->join('user u', 'u.id = r.user_id')
  343. ->where($where)
  344. ->page($get['page'], $get['limit'])
  345. ->order('r.id desc')
  346. ->select();
  347. foreach ($lists as $list) {
  348. if (!empty($list['pay_time'])) {
  349. $list['pay_time'] = date('Y-m-d H:i:s', $list['pay_time']);
  350. }
  351. }
  352. $count = RechargeOrder::alias('r')
  353. ->field('r.*,u.id,u.nickname,u.mobile')
  354. ->join('user u', 'u.id = r.user_id')
  355. ->where($where)
  356. ->order('r.id desc')
  357. ->count();
  358. return ['count' => $count, 'lists' => $lists];
  359. }
  360. /**
  361. * @notes 会员佣金提现详情
  362. * @param $id
  363. * @return array|\think\Model|null
  364. * @throws \think\db\exception\DataNotFoundException
  365. * @throws \think\db\exception\DbException
  366. * @throws \think\db\exception\ModelNotFoundException
  367. * @author suny
  368. * @date 2021/7/14 10:01 上午
  369. */
  370. public static function detail($id)
  371. {
  372. $detail = WithdrawApply::alias('w')
  373. ->field('w.*,u.sn as user_sn, u.nickname, u.mobile')
  374. ->leftJoin('user u', 'u.id=w.user_id')
  375. ->where('w.id', $id)
  376. ->find();
  377. $detail['money_qr_code'] = UrlServer::getFileUrl($detail['money_qr_code'] ?? '');
  378. $detail['typeDesc'] = WithdrawEnum::getTypeDesc($detail['type']);
  379. $detail['statusDesc'] = WithdrawEnum::getStatusDesc($detail['status']);
  380. $detail['transfer_time'] = $detail['transfer_time'] ? date('Y-m-d H:i:s', $detail['transfer_time']) : '';
  381. $detail['payment_time'] = $detail['payment_time'] ? date('Y-m-d H:i:s', $detail['payment_time']) : '';
  382. return $detail;
  383. }
  384. /**
  385. * @notes 审核通过
  386. * @param $post
  387. * @return array
  388. * @throws \think\db\exception\DataNotFoundException
  389. * @throws \think\db\exception\DbException
  390. * @throws \think\db\exception\ModelNotFoundException
  391. * @throws \think\exception\DbException
  392. * @author suny
  393. * @date 2021/7/14 10:02 上午
  394. */
  395. public static function confirm($post)
  396. {
  397. $id = $post['id'];
  398. $withdraw = WithdrawApply::where('id', $id)
  399. ->find();
  400. // 判断提现单是否为待提现状态 1
  401. if ($withdraw['status'] != 1) {
  402. return [
  403. 'code' => 0,
  404. 'msg' => '不是待提现申请单'
  405. ];
  406. }
  407. //提现到钱包余额
  408. if ($withdraw['type'] == WithdrawEnum::TYPE_BALANCE) {
  409. $user = User::find($withdraw['user_id']);
  410. $user->user_money = ['inc', $withdraw['left_money']];
  411. $user->save();
  412. AccountLogLogic::AccountRecord(
  413. $withdraw['user_id'],
  414. $withdraw['left_money'],
  415. 1,
  416. AccountLog::withdraw_to_balance,
  417. '',
  418. $withdraw['id'],
  419. $withdraw['sn']
  420. );
  421. //更新提现申请单状态为提现成功
  422. WithdrawApply::where('id', $id)
  423. ->update(['status' => WithdrawEnum::STATUS_SUCCESS, 'update_time' => time(), 'description' => $post['description']]);
  424. return [
  425. 'code' => 1,
  426. 'msg' => '提现至钱包余额成功'
  427. ];
  428. }
  429. //提现到微信零钱
  430. if ($withdraw['type'] == WithdrawEnum::TYPE_WECHAT_CHANGE) {
  431. // 先更新审核备注
  432. WithdrawApply::where('id', $id)
  433. ->update(['update_time' => time(), 'description' => $post['description']]);
  434. //微信零钱接口:1-企业付款到零钱;2-商家转账到零钱
  435. $transfer_way = ConfigServer::get('withdraw', 'transfer_way',1);
  436. if ($transfer_way == 1) {
  437. return WechatCorporatePaymentLogic::pay($withdraw);
  438. }
  439. if ($transfer_way == 2) {
  440. return WechatMerchantTransferLogic::transfer($withdraw);
  441. }
  442. }
  443. //提现到微信收款码、支付收款码
  444. if ($withdraw['type'] == WithdrawEnum::TYPE_WECHAT_CODE || $withdraw['type'] == WithdrawEnum::TYPE_ALI_CODE || WithdrawEnum::TYPE_BANK) {
  445. // 直接标识为提现中状态
  446. WithdrawApply::where('id', $id)
  447. ->update(['status' => WithdrawEnum::STATUS_ING, 'update_time' => time(), 'description' => $post['description']]);
  448. return [
  449. 'code' => 1,
  450. 'msg' => '审核通过,提现中'
  451. ];
  452. }
  453. }
  454. /**
  455. * @notes 审核拒绝
  456. * @param $post
  457. * @throws \think\exception\PDOException
  458. * @author suny
  459. * @date 2021/7/14 10:03 上午
  460. */
  461. public static function refuse($post)
  462. {
  463. Db::startTrans();
  464. try {
  465. $withdraw_apply = WithdrawApply::where('id', $post['id'])->find();
  466. $withdraw_apply->status = WithdrawEnum::STATUS_FAIL; // 提现失败
  467. $withdraw_apply->description = $post['description'];
  468. $withdraw_apply->update_time = time();
  469. $withdraw_apply->save();
  470. //拒绝提现,回退佣金
  471. $user = User::find($withdraw_apply['user_id']);
  472. $user->earnings = ['inc', $withdraw_apply['money']];
  473. $user->save();
  474. //增加佣金变动记录
  475. AccountLogLogic::AccountRecord(
  476. $withdraw_apply['user_id'],
  477. $withdraw_apply['money'],
  478. 1,
  479. AccountLog::withdraw_back_earnings,
  480. '',
  481. $withdraw_apply['id'],
  482. $withdraw_apply['sn']
  483. );
  484. Db::commit();
  485. } catch (Exception $e) {
  486. Db::rollback();
  487. }
  488. }
  489. /**
  490. * @notes 审核拒绝
  491. * @param $post
  492. * @return array
  493. * @throws \think\db\exception\DataNotFoundException
  494. * @throws \think\db\exception\DbException
  495. * @throws \think\db\exception\ModelNotFoundException
  496. * @throws \think\exception\DbException
  497. * @author suny
  498. * @date 2021/7/14 10:03 上午
  499. */
  500. public static function transferFail($post)
  501. {
  502. if (empty($post['transfer_description'])) {
  503. return [
  504. 'code' => 0,
  505. 'msg' => '请填写转账说明'
  506. ];
  507. }
  508. // 标识提现失败
  509. WithdrawApply::where('id', $post['id'])->update([
  510. 'status' => 4, // 提现失败
  511. 'transfer_voucher' => $post['transfer_voucher'] ? $post['transfer_voucher'] : '',
  512. 'transfer_description' => $post['transfer_description'],
  513. 'update_time' => time()
  514. ]);
  515. $withdraw_apply = WithdrawApply::where('id', $post['id'])->find();
  516. // 退回佣金
  517. $user = User::find($withdraw_apply['user_id']);
  518. $user->earnings = ['inc', $withdraw_apply['money']];
  519. $user->save();
  520. //增加佣金变动记录
  521. AccountLogLogic::AccountRecord(
  522. $withdraw_apply['user_id'],
  523. $withdraw_apply['money'],
  524. 1,
  525. AccountLog::withdraw_back_earnings,
  526. '',
  527. $withdraw_apply['id'],
  528. $withdraw_apply['sn']
  529. );
  530. return [
  531. 'code' => 1,
  532. 'msg' => '转账失败,提现金额已退回佣金账户'
  533. ];
  534. }
  535. /**
  536. * @notes 转账成功
  537. * @param $post
  538. * @return array
  539. * @author suny
  540. * @date 2021/7/14 10:03 上午
  541. */
  542. public static function transferSuccess($post)
  543. {
  544. if (empty($post['transfer_voucher'])) {
  545. return [
  546. 'code' => 0,
  547. 'msg' => '请上传转账凭证'
  548. ];
  549. }
  550. $post['transfer_voucher'] = UrlServer::getFileUrl($post['transfer_voucher']);
  551. if (empty($post['transfer_description'])) {
  552. return [
  553. 'code' => 0,
  554. 'msg' => '请填写转账说明'
  555. ];
  556. }
  557. // 标识提现成功
  558. WithdrawApply::where('id', $post['id'])->update([
  559. 'status' => 3, // 提现成功
  560. 'transfer_voucher' => $post['transfer_voucher'],
  561. 'transfer_description' => $post['transfer_description'],
  562. 'update_time' => time(),
  563. 'transfer_time' => time()
  564. ]);
  565. return [
  566. 'code' => 1,
  567. 'msg' => '转账成功'
  568. ];
  569. }
  570. /**
  571. * @notes 提现失败
  572. * @param $id
  573. * @throws \think\db\exception\DataNotFoundException
  574. * @throws \think\db\exception\DbException
  575. * @throws \think\db\exception\ModelNotFoundException
  576. * @throws \think\exception\DbException
  577. * @author suny
  578. * @date 2021/7/14 10:03 上午
  579. */
  580. public static function withdrawFailed($id)
  581. {
  582. $withdraw_apply = WithdrawApply::where('id', $id)->find();
  583. $withdraw_apply->status = WithdrawEnum::STATUS_FAIL; // 提现失败
  584. $withdraw_apply->update_time = time();
  585. $withdraw_apply->save();
  586. //拒绝提现,回退佣金
  587. $user = User::find($withdraw_apply['user_id']);
  588. $user->earnings = ['inc', $withdraw_apply['money']];
  589. $user->save();
  590. //增加佣金变动记录
  591. AccountLogLogic::AccountRecord(
  592. $withdraw_apply['user_id'],
  593. $withdraw_apply['money'],
  594. 1,
  595. AccountLog::withdraw_back_earnings,
  596. '',
  597. $withdraw_apply['id'],
  598. $withdraw_apply['sn']
  599. );
  600. }
  601. /**
  602. * @notes 搜索
  603. * @param $id
  604. * @return array
  605. * @throws \think\db\exception\DataNotFoundException
  606. * @throws \think\db\exception\DbException
  607. * @throws \think\db\exception\ModelNotFoundException
  608. * @author suny
  609. * @date 2021/7/14 10:03 上午
  610. */
  611. public static function search($id)
  612. {
  613. $withdraw = WithdrawApply::where('id', $id)
  614. ->find();
  615. // 判断提现单是否为提现中状态 2 且 提现方式为 微信零钱 2
  616. if ($withdraw['status'] == 2 && $withdraw['type'] == 2) {
  617. //微信零钱接口:1-企业付款到零钱;2-商家转账到零钱
  618. $transfer_way = ConfigServer::get('withdraw', 'transfer_way',1);
  619. if ($transfer_way == 1) {
  620. return WechatCorporatePaymentLogic::search($withdraw);
  621. }
  622. if ($transfer_way == 2) {
  623. $result = WechatMerchantTransferLogic::details($withdraw);
  624. // 记录查询结果
  625. WithdrawApply::update(['update_time'=>time(),'pay_search_desc'=>json_encode($result, JSON_UNESCAPED_UNICODE)],['id'=>$withdraw['id']]);
  626. if(isset($result['detail_status'])) {
  627. if ($result['detail_status'] == 'SUCCESS') {
  628. // 转账成功,标记提现申请单为提现成功,记录支付信息
  629. WithdrawApply::update(['status'=>3,'payment_no'=>$result['detail_id'],'payment_time'=>strtotime($result['update_time'])],['id'=>$withdraw['id']]);
  630. return ['code' => 1, 'msg' => '提现成功'];
  631. }
  632. if ($result['detail_status'] == 'FAIL') {
  633. // 转账失败
  634. WithdrawApply::update(['status'=>4],['id'=>$withdraw['id']]);
  635. //回退佣金
  636. $user = User::find($withdraw['user_id']);
  637. $user->earnings = ['inc', $withdraw['money']];
  638. $user->save();
  639. //增加佣金变动记录
  640. AccountLogLogic::AccountRecord(
  641. $withdraw['user_id'],
  642. $withdraw['money'],
  643. 1,
  644. AccountLog::withdraw_back_earnings,
  645. '',
  646. $withdraw['id'],
  647. $withdraw['sn']
  648. );
  649. return ['code' => 1, 'msg' => '提现至微信零钱失败'];
  650. }
  651. if ($result['detail_status'] == 'PROCESSING') {
  652. return ['code' => 0, 'msg' => '正在处理中'];
  653. }
  654. }else{
  655. return ['code' => 0, 'msg' => $result['message'] ?? '商家转账到零钱查询失败'];
  656. }
  657. }
  658. } else {
  659. return [
  660. 'code' => 0,
  661. 'msg' => '不是提现中的微信零钱申请单,无法查询'
  662. ];
  663. }
  664. }
  665. /**
  666. * @notes 导出Excel
  667. * @param array $where
  668. * @return array|false
  669. * @author 段誉
  670. * @date 2022/4/24 10:10
  671. */
  672. public static function rechargeExport($where)
  673. {
  674. try {
  675. $lists = RechargeOrder::alias('r')
  676. ->field('r.*,u.id,u.nickname,u.mobile')
  677. ->join('user u', 'u.id = r.user_id')
  678. ->where($where)
  679. ->order('r.id desc')
  680. ->select()->toArray();
  681. foreach ($lists as &$list) {
  682. if (!empty($list['pay_time'])) {
  683. $list['pay_time'] = date('Y-m-d H:i:s', $list['pay_time']);
  684. }
  685. }
  686. $excelFields = [
  687. 'order_sn' => '订单编号',
  688. 'nickname' => '用户昵称',
  689. 'mobile' => '用户手机号',
  690. 'order_amount' => '充值金额',
  691. 'give_money' => '赠送金额',
  692. 'give_growth' => '赠送成长值',
  693. 'pay_way' => '支付方式',
  694. 'pay_time' => '支付时间',
  695. 'pay_status' => '订单状态',
  696. 'create_time' => '下单时间',
  697. ];
  698. $export = new ExportExcelServer();
  699. $export->setFileName('充值明细');
  700. $result = $export->createExcel($excelFields, $lists);
  701. return ['url' => $result];
  702. } catch (\Exception $e) {
  703. self::$error = $e->getMessage();
  704. return false;
  705. }
  706. }
  707. /**
  708. * @notes 导出Excel
  709. * @param array $where
  710. * @return array|false
  711. * @author 段誉
  712. * @date 2022/4/24 10:10
  713. */
  714. public static function accountExport($where)
  715. {
  716. try {
  717. $lists = AccountLog::alias('a')
  718. ->field('a.*,u.nickname,u.sn as user_sn,u.mobile')
  719. ->join('user u', 'u.id = a.user_id')
  720. ->where($where)
  721. ->order('a.id desc')
  722. ->select();
  723. $excelFields = [
  724. 'nickname' => '会员昵称',
  725. 'user_sn' => '会员编号',
  726. 'mobile' => '手机号码',
  727. 'change_amount' => '变动金额',
  728. 'left_amount' => '剩余金额',
  729. 'source_type' => '明细类型',
  730. 'source_sn' => '来源单号',
  731. 'create_time' => '记录时间',
  732. ];
  733. $export = new ExportExcelServer();
  734. $export->setFileName('账户明细');
  735. $result = $export->createExcel($excelFields, $lists);
  736. return ['url' => $result];
  737. } catch (\Exception $e) {
  738. self::$error = $e->getMessage();
  739. return false;
  740. }
  741. }
  742. /**
  743. * @notes 导出Excel
  744. * @param array $condition
  745. * @return array|false
  746. * @author 段誉
  747. * @date 2022/4/24 10:10
  748. */
  749. public static function commissionExport($where)
  750. {
  751. try {
  752. $lists = AccountLog::alias('a')
  753. ->field('a.*,u.nickname,u.sn as user_sn,u.mobile,w.sn as withdraw_sn')
  754. ->join('user u', 'u.id = a.user_id')
  755. ->leftjoin('withdraw_apply w', 'w.sn = a.source_sn')
  756. ->where($where)
  757. ->order('a.id desc')
  758. ->select();
  759. $excelFields = [
  760. 'nickname' => '会员昵称',
  761. 'user_sn' => '会员编号',
  762. 'mobile' => '手机号码',
  763. 'change_amount' => '变动金额',
  764. 'left_amount' => '剩余佣金',
  765. 'source_type' => '明细类型',
  766. 'withdraw_sn' => '来源单号',
  767. 'create_time' => '记录时间',
  768. ];
  769. $export = new ExportExcelServer();
  770. $export->setFileName('佣金明细');
  771. $result = $export->createExcel($excelFields, $lists);
  772. return ['url' => $result];
  773. } catch (\Exception $e) {
  774. self::$error = $e->getMessage();
  775. return false;
  776. }
  777. }
  778. /**
  779. * @notes 导出Excel
  780. * @param array $condition
  781. * @return array|false
  782. * @author 段誉
  783. * @date 2022/4/24 10:10
  784. */
  785. public static function withdrawExport($where)
  786. {
  787. try {
  788. $lists = WithdrawApply::alias('w')
  789. ->field('w.*, u.nickname,u.avatar, u.sn as user_sn, u.mobile, ul.name as user_level_name')
  790. ->with('user')
  791. ->leftJoin('user u', 'u.id = w.user_id')
  792. ->leftJoin('user_level ul', 'ul.id = u.level')
  793. ->where($where)
  794. ->order('w.id desc')
  795. ->select();
  796. foreach ($lists as &$item) {
  797. $item['type_text'] = WithdrawEnum::getTypeDesc($item['type']);
  798. $item['status_text'] = WithdrawEnum::getStatusDesc($item['status']);
  799. }
  800. $excelFields = [
  801. 'sn' => '提现单号',
  802. 'nickname' => '会员昵称',
  803. 'user_sn' => '会员编号',
  804. 'mobile' => '手机号码',
  805. 'left_money' => '提现金额',
  806. 'type_text' => '提现方式',
  807. 'status_text' => '提现状态',
  808. 'remark' => '提现说明',
  809. 'create_time' => '提现时间',
  810. ];
  811. $export = new ExportExcelServer();
  812. $export->setFileName('佣金提现');
  813. $result = $export->createExcel($excelFields, $lists);
  814. return ['url' => $result];
  815. } catch (\Exception $e) {
  816. self::$error = $e->getMessage();
  817. return false;
  818. }
  819. }
  820. }