UserWalletApply.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  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. var_dump(55555);
  174. $operate = $this->request->post('operate');
  175. foreach ($applyList as $apply) {
  176. Db::startTrans();
  177. try {
  178. switch ($operate) {
  179. case '1':
  180. WithDraw::handleAgree($apply);
  181. $apply->status === 1 ? $successCount++ : $failedCount++;
  182. break;
  183. case '2':
  184. WithDraw::handleWithdraw($apply);
  185. $apply->status === 2 ? $successCount++ : $failedCount++;
  186. break;
  187. case '3':
  188. WithDraw::handleAgree($apply);
  189. WithDraw::handleWithdraw($apply);
  190. $apply->status === 2 ? $successCount++ : $failedCount++;
  191. break;
  192. case '-1':
  193. $rejectInfo = $this->request->post('rejectInfo');
  194. if (!$rejectInfo) {
  195. throw \Exception('请输入拒绝原因');
  196. }
  197. WithDraw::handleReject($apply, $rejectInfo);
  198. $apply->status === -1 ? $successCount++ : $failedCount++;;
  199. break;
  200. }
  201. // 提现结果通知
  202. $user = \addons\shopro\model\User::get($apply->user_id);
  203. $user && $user->notify(
  204. new \addons\shopro\notifications\Wallet([
  205. 'apply' => $apply,
  206. 'event' => 'wallet_apply'
  207. ])
  208. );
  209. Db::commit();
  210. } catch (\Exception $e) {
  211. Db::rollback();
  212. WithDraw::handleLog($apply, '失败: ' . $e->getMessage());
  213. $failedCount++;
  214. $lastErrorMessage = $e->getMessage();
  215. }
  216. }
  217. if (count($ids) === 1) {
  218. if ($successCount) $this->success('操作成功');
  219. if ($failedCount) $this->error($lastErrorMessage);
  220. } else {
  221. $this->success('成功: ' . $successCount . '笔' . ' | 失败: ' . $failedCount . '笔');
  222. }
  223. }
  224. public function log($id)
  225. {
  226. $apply = $this->model->get($id);
  227. if (!$apply) {
  228. $this->error('未找到该提现日志');
  229. }
  230. $applyLog = $apply->log;
  231. if ($applyLog) {
  232. foreach ($applyLog as &$log) {
  233. $log['oper'] = \addons\shopro\library\Oper::get($log['oper_type'], $log['oper_id']);
  234. }
  235. }
  236. $this->success('提现日志', null, $applyLog);
  237. }
  238. /**
  239. * 提现搜索
  240. *
  241. * @return object
  242. */
  243. public function buildSearch()
  244. {
  245. $filter = $this->request->get("filter", '');
  246. $filter = (array)json_decode($filter, true);
  247. $filter = $filter ? $filter : [];
  248. $user_nickname = isset($filter['user_nickname']) ? $filter['user_nickname'] : '';
  249. $user_mobile = isset($filter['user_mobile']) ? $filter['user_mobile'] : '';
  250. // 当前表名
  251. $tableName = $this->model->getQuery()->getTable();
  252. $applys = $this->model;
  253. // 购买人查询
  254. if ($user_nickname || $user_mobile) {
  255. $applys = $applys->whereExists(function ($query) use ($user_nickname, $user_mobile, $tableName) {
  256. $userTableName = (new \app\admin\model\User())->getQuery()->getTable();
  257. $query = $query->table($userTableName)->where($userTableName . '.id=' . $tableName . '.user_id');
  258. if ($user_nickname) {
  259. $query = $query->where('nickname', 'like', "%{$user_nickname}%");
  260. }
  261. if ($user_mobile) {
  262. $query = $query->where('mobile', 'like', "%{$user_mobile}%");
  263. }
  264. return $query;
  265. });
  266. }
  267. return $applys;
  268. }
  269. }