截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Withdrawal.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <?php
  2. namespace app\shop\controller\finance;
  3. use app\common\basics\ShopBase;
  4. use app\common\enum\ShopWithdrawEnum;
  5. use app\common\logic\SettingLogic;
  6. use app\common\model\shop\Shop;
  7. use app\common\server\ConfigServer;
  8. use app\common\server\JsonServer;
  9. use app\shop\logic\AlipayLogic;
  10. use app\shop\logic\BankLogic;
  11. use app\shop\logic\finance\WithdrawalLogic;
  12. use think\facade\View;
  13. class Withdrawal extends ShopBase
  14. {
  15. /**
  16. * @Notes: 提现列表
  17. * @Author: 张无忌
  18. */
  19. public function lists()
  20. {
  21. if ($this->request->isAjax()) {
  22. $get = $this->request->get();
  23. $lists = WithdrawalLogic::lists($get, $this->shop_id);
  24. return JsonServer::success('获取成功', $lists);
  25. }
  26. View::assign('statistics', WithdrawalLogic::statistics($this->shop_id));
  27. return view();
  28. }
  29. /**
  30. * @Notes: 选项卡数据统计
  31. * @Author: 张无忌
  32. */
  33. public function statistics()
  34. {
  35. if ($this->request->isAjax()) {
  36. $statistics = WithdrawalLogic::statistics($this->shop_id);
  37. return JsonServer::success('获取成功', $statistics);
  38. }
  39. return JsonServer::error('异常');
  40. }
  41. /**
  42. * @Notes: 申请提现
  43. * @Author: 张无忌
  44. */
  45. public function add()
  46. {
  47. if ($this->request->isAjax()) {
  48. $post = $this->request->post();
  49. $res = WithdrawalLogic::add($post, $this->shop_id);
  50. if ($res === false) {
  51. $error = BankLogic::getError() ?: '申请失败';
  52. return JsonServer::error($error);
  53. }
  54. return JsonServer::success('申请成功');
  55. }
  56. $shopWithdrawConfig = SettingLogic::getShopWithdraw();
  57. return view('', [
  58. 'withdrawal_service_charge' => $shopWithdrawConfig['withdrawal_service_charge'],
  59. 'shop' => (new Shop())->findOrEmpty($this->shop_id)->toArray(),
  60. 'types' => ShopWithdrawEnum::type_text_arr3($shopWithdrawConfig['withdrawal_type']),
  61. ]);
  62. }
  63. /**
  64. * @notes 申请提现 账号选择
  65. * @return \think\response\Json|void
  66. * @author lbzy
  67. * @datetime 2023-06-09 19:00:31
  68. */
  69. function add_accounts()
  70. {
  71. $type = input('type/d', -999);
  72. if ($type == ShopWithdrawEnum::TYPE_BANK) {
  73. return JsonServer::success('', BankLogic::getBankByShopId($this->shop_id));
  74. }
  75. if ($type == ShopWithdrawEnum::TYPE_ALIPAY) {
  76. return JsonServer::success('', AlipayLogic::getAlipayByShopId($this->shop_id));
  77. }
  78. }
  79. /**
  80. * @Notes: 申请详细
  81. * @Author: 张无忌
  82. */
  83. public function detail()
  84. {
  85. $id = $this->request->get('id');
  86. View::assign('detail', WithdrawalLogic::detail($id, $this->shop_id));
  87. return view();
  88. }
  89. /**
  90. * @notes 导出Excel
  91. * @return \think\response\Json
  92. * @author 段誉
  93. * @date 2022/4/24 11:57
  94. */
  95. public function export()
  96. {
  97. $params = $this->request->get();
  98. $result = WithdrawalLogic::lists($params, $this->shop_id, true);
  99. if(false === $result) {
  100. return JsonServer::error(WithdrawalLogic::getError() ?: '导出失败');
  101. }
  102. return JsonServer::success('', $result);
  103. }
  104. }