UserWalletApply.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. <?php
  2. namespace app\admin\controller\shopro;
  3. use app\admin\model\shopro\user\User;
  4. use app\common\controller\Backend;
  5. use think\Db;
  6. use addons\shopro\library\Export;
  7. use addons\shopro\model\UserWalletApply as WithDraw;
  8. /**
  9. * 用户提现
  10. *
  11. * @icon fa fa-circle-o
  12. */
  13. class UserWalletApply extends Base
  14. {
  15. protected $noNeedRight = ['getType'];
  16. /**
  17. * UserWalletApply模型对象
  18. * @var \app\admin\model\shopro\UserWalletApply
  19. */
  20. protected $model = null;
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. $this->model = new \app\admin\model\shopro\UserWalletApply;
  25. $this->view->assign("getTypeList", $this->model->getApplyTypeList());
  26. $this->view->assign("statusList", $this->model->getStatusList());
  27. $this->assignconfig('typeList', $this->model->getApplyTypeList());
  28. }
  29. /**
  30. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  31. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  32. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  33. */
  34. /**
  35. * 查看
  36. */
  37. public function index()
  38. {
  39. //设置过滤方法
  40. $this->request->filter(['strip_tags', 'trim']);
  41. if ($this->request->isAjax()) {
  42. //如果发送的来源是Selectpage,则转发到Selectpage
  43. if ($this->request->request('keyField')) {
  44. return $this->selectpage();
  45. }
  46. $nobuildfields = ['user_nickname', 'user_mobile'];
  47. list($where, $sort, $order, $offset, $limit) = $this->custombuildparams(null, $nobuildfields);
  48. $total = $this->buildSearch()
  49. ->where($where)
  50. ->order($sort, $order)
  51. ->count();
  52. $list = $this->buildSearch()
  53. ->with('user')
  54. ->where($where)
  55. ->order($sort, $order)
  56. ->limit($offset, $limit)
  57. ->select();
  58. $result = array("total" => $total, "rows" => $list);
  59. return $this->success('操作成功', null, $result);
  60. }
  61. return $this->view->fetch();
  62. }
  63. // 提现导出
  64. public function export()
  65. {
  66. $nobuildfields = ['user_nickname', 'user_mobile'];
  67. list($where, $sort, $order, $offset, $limit) = $this->custombuildparams(null, $nobuildfields);
  68. $expCellName = [
  69. 'id' => 'Id',
  70. 'apply_sn' => '提现单号',
  71. 'user_nickname' => '用户姓名',
  72. 'user_phone' => '手机号',
  73. 'money' => '提现金额',
  74. 'actual_money' => '实际到账',
  75. 'charge_money' => '手续费',
  76. 'service_fee' => '手续费率',
  77. 'apply_type' => '提现方式',
  78. 'apply_info' => '打款信息',
  79. 'status' => '状态',
  80. 'createtime' => '申请时间',
  81. 'updatetime' => '处理时间',
  82. ];
  83. $export = new Export();
  84. $spreadsheet = null;
  85. $sheet = null;
  86. $total = $this->buildSearch()->where($where)->order($sort, $order)->count();
  87. $page_size = 2000;
  88. $total_page = intval(ceil($total / $page_size));
  89. $newList = [];
  90. $money_total = 0; // 提现总金额
  91. $actual_money_total = 0; // 到账总金额
  92. $charge_money_total = 0; // 手续费总金额
  93. if ($total == 0) {
  94. $this->error('导出数据为空');
  95. }
  96. for ($i = 0; $i < $total_page; $i++) {
  97. $page = $i + 1;
  98. $is_last_page = ($page == $total_page) ? true : false;
  99. $list = $this->buildSearch()
  100. ->with('user')
  101. ->where($where)
  102. ->order($sort, $order)
  103. ->limit(($i * $page_size), $page_size)
  104. ->select();
  105. $list = collection($list)->toArray();
  106. $newList = [];
  107. foreach ($list as $key => $apply) {
  108. $applyinfo = '';
  109. foreach ($apply['apply_info_text'] as $name => $info) {
  110. $applyinfo .= $name . ':' . $info . " \n";
  111. }
  112. $newList[] = [
  113. 'id' => $apply['id'],
  114. 'apply_sn' => $apply['apply_sn'],
  115. 'user_nickname' => $apply['user'] ? (strpos($apply['user']['nickname'], '=') === 0 ? ' ' . $apply['user']['nickname'] : $apply['user']['nickname']) : '',
  116. 'user_phone' => $apply['user'] ? $apply['user']['mobile'] . ' ' : '',
  117. 'money' => $apply['money'] . '元',
  118. 'actual_money' => $apply['actual_money'] . '元',
  119. 'charge_money' => $apply['charge_money'] . '元',
  120. 'service_fee' => $apply['service_fee'],
  121. 'apply_type' => $apply['apply_type_text'],
  122. 'apply_info' => $applyinfo,
  123. 'status' => $apply['status_text'],
  124. 'createtime' => date('Y-m-d H:i:s', $apply['createtime']),
  125. 'updatetime' => date('Y-m-d H:i:s', $apply['updatetime']),
  126. ];
  127. $money_total += $apply['money']; // 提现总金额
  128. $actual_money_total += $apply['actual_money']; // 到账总金额
  129. $charge_money_total += $apply['charge_money']; // 手续费总金额
  130. }
  131. if ($is_last_page) {
  132. $newList[] = [
  133. 'id' => "提现申请总数:" . $total . ";提现总金额:¥" . $money_total . ";到账总金额:¥" . $actual_money_total . ";手续费总金额:¥" . $charge_money_total . ";"
  134. ];
  135. }
  136. $export->exportExcel('提现列表-' . date('Y-m-d H:i:s'), $expCellName, $newList, $spreadsheet, $sheet, [
  137. 'page' => $page,
  138. 'page_size' => $page_size,
  139. 'is_last_page' => $is_last_page
  140. ]);
  141. }
  142. }
  143. // 获取要查询的提现类型
  144. public function getType()
  145. {
  146. $apply_type = $this->model->getApplyTypeList();
  147. $status = $this->model->getStatusList();
  148. $result = [
  149. 'apply_type' => $apply_type,
  150. 'status' => $status,
  151. ];
  152. $data = [];
  153. foreach ($result as $key => $list) {
  154. $data[$key][] = ['name' => '全部', 'type' => 'all'];
  155. foreach ($list as $k => $v) {
  156. $data[$key][] = [
  157. 'name' => $v,
  158. 'type' => $k
  159. ];
  160. }
  161. }
  162. return $this->success('操作成功', null, $data);
  163. }
  164. public function handle($ids)
  165. {
  166. $successCount = 0;
  167. $failedCount = 0;
  168. $ids = explode(',', $ids);
  169. $applyList = $this->model->where('id', 'in', $ids)->select();
  170. if (!$applyList) {
  171. $this->error('未找到该提现申请');
  172. }
  173. $operate = $this->request->post('operate');
  174. foreach ($applyList as $apply) {
  175. Db::startTrans();
  176. try {
  177. switch ($operate) {
  178. case '1':
  179. WithDraw::handleAgree($apply);
  180. $apply->status === 1 ? $successCount++ : $failedCount++;
  181. break;
  182. case '2':
  183. WithDraw::handleWithdraw($apply);
  184. $apply->status === 2 ? $successCount++ : $failedCount++;
  185. break;
  186. case '3':
  187. WithDraw::handleAgree($apply);
  188. WithDraw::handleWithdraw($apply);
  189. $apply->status === 2 ? $successCount++ : $failedCount++;
  190. break;
  191. case '-1':
  192. $rejectInfo = $this->request->post('rejectInfo');
  193. if (!$rejectInfo) {
  194. throw \Exception('请输入拒绝原因');
  195. }
  196. WithDraw::handleReject($apply, $rejectInfo);
  197. $apply->status === -1 ? $successCount++ : $failedCount++;;
  198. break;
  199. }
  200. // 提现结果通知
  201. $user = \addons\shopro\model\User::get($apply->user_id);
  202. $user && $user->notify(
  203. new \addons\shopro\notifications\Wallet([
  204. 'apply' => $apply,
  205. 'event' => 'wallet_apply'
  206. ])
  207. );
  208. Db::commit();
  209. } catch (\Exception $e) {
  210. Db::rollback();
  211. WithDraw::handleLog($apply, '失败: ' . $e->getMessage());
  212. $failedCount++;
  213. $lastErrorMessage = $e->getMessage();
  214. }
  215. }
  216. if (count($ids) === 1) {
  217. if ($successCount) $this->success('操作成功');
  218. if ($failedCount) $this->error($lastErrorMessage);
  219. } else {
  220. $this->success('成功: ' . $successCount . '笔' . ' | 失败: ' . $failedCount . '笔');
  221. }
  222. }
  223. public function log($id)
  224. {
  225. $apply = $this->model->get($id);
  226. if (!$apply) {
  227. $this->error('未找到该提现日志');
  228. }
  229. $applyLog = $apply->log;
  230. if ($applyLog) {
  231. foreach ($applyLog as &$log) {
  232. $log['oper'] = \addons\shopro\library\Oper::get($log['oper_type'], $log['oper_id']);
  233. }
  234. }
  235. $this->success('提现日志', null, $applyLog);
  236. }
  237. /**
  238. * 提现搜索
  239. *
  240. * @return object
  241. */
  242. public function buildSearch()
  243. {
  244. $filter = $this->request->get("filter", '');
  245. $filter = (array)json_decode($filter, true);
  246. $filter = $filter ? $filter : [];
  247. $user_nickname = isset($filter['user_nickname']) ? $filter['user_nickname'] : '';
  248. $user_mobile = isset($filter['user_mobile']) ? $filter['user_mobile'] : '';
  249. // 当前表名
  250. $tableName = $this->model->getQuery()->getTable();
  251. $applys = $this->model;
  252. // 购买人查询
  253. if ($user_nickname || $user_mobile) {
  254. $applys = $applys->whereExists(function ($query) use ($user_nickname, $user_mobile, $tableName) {
  255. $userTableName = (new \app\admin\model\User())->getQuery()->getTable();
  256. $query = $query->table($userTableName)->where($userTableName . '.id=' . $tableName . '.user_id');
  257. if ($user_nickname) {
  258. $query = $query->where('nickname', 'like', "%{$user_nickname}%");
  259. }
  260. if ($user_mobile) {
  261. $query = $query->where('mobile', 'like', "%{$user_mobile}%");
  262. }
  263. return $query;
  264. });
  265. }
  266. return $applys;
  267. }
  268. }