Transfer.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <?php
  2. namespace app\data\controller\user;
  3. use app\data\service\UserAdminService;
  4. use app\data\service\UserTransferService;
  5. use think\admin\Controller;
  6. use think\admin\extend\CodeExtend;
  7. use think\admin\service\AdminService;
  8. /**
  9. * 用户提现管理
  10. * Class Transfer
  11. * @package app\data\controller\user
  12. */
  13. class Transfer extends Controller
  14. {
  15. /**
  16. * 绑定数据表
  17. * @var string
  18. */
  19. private $table = 'DataUserTransfer';
  20. /**
  21. * 提现转账方案
  22. * @var array
  23. */
  24. protected $types = [];
  25. protected function initialize()
  26. {
  27. $this->types = UserTransferService::instance()->types();
  28. }
  29. /**
  30. * 用户提现配置
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\DbException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. */
  35. public function config()
  36. {
  37. $this->skey = 'TransferRule';
  38. $this->title = '用户提现配置';
  39. $this->_sysdata();
  40. }
  41. /**
  42. * 微信转账配置
  43. * @throws \think\db\exception\DataNotFoundException
  44. * @throws \think\db\exception\DbException
  45. * @throws \think\db\exception\ModelNotFoundException
  46. */
  47. public function payment()
  48. {
  49. $this->skey = 'TransferWxpay';
  50. $this->title = '微信提现配置';
  51. $this->_sysdata();
  52. }
  53. /**
  54. * 配置数据处理
  55. * @param string $tpl 模板文件
  56. * @throws \think\db\exception\DataNotFoundException
  57. * @throws \think\db\exception\DbException
  58. * @throws \think\db\exception\ModelNotFoundException
  59. */
  60. private function _sysdata($tpl = '')
  61. {
  62. if ($this->request->isGet()) {
  63. $this->data = sysdata($this->skey);
  64. $this->fetch($tpl);
  65. } else {
  66. sysdata($this->skey, $this->request->post());
  67. $this->success('配置修改成功');
  68. }
  69. }
  70. /**
  71. * 用户提现管理
  72. * @menu true
  73. * @auth true
  74. * @throws \think\db\exception\DataNotFoundException
  75. * @throws \think\db\exception\DbException
  76. * @throws \think\db\exception\ModelNotFoundException
  77. */
  78. public function index()
  79. {
  80. $this->title = '用户提现管理';
  81. $this->transfer = UserTransferService::instance()->amount(0);
  82. // 创建查询对象
  83. $query = $this->_query($this->table)->order('id desc');
  84. // 用户条件搜索
  85. $db = $this->_query('DataUser')->like('phone,username|nickname#nickname')->db();
  86. if ($db->getOptions('where')) $query->whereRaw("uid in {$db->field('id')->buildSql()}");
  87. // 数据列表处理
  88. $query->equal('type,status')->dateBetween('create_at')->page();
  89. }
  90. /**
  91. * 数据列表处理
  92. * @param array $data
  93. */
  94. protected function _page_filter(array &$data)
  95. {
  96. UserAdminService::instance()->buildByUid($data);
  97. foreach ($data as &$vo) {
  98. $vo['type_name'] = UserTransferService::instance()->types($vo['type']);
  99. }
  100. }
  101. /**
  102. * 提现审核操作
  103. * @auth true
  104. * @throws \think\db\exception\DataNotFoundException
  105. * @throws \think\db\exception\DbException
  106. * @throws \think\db\exception\ModelNotFoundException
  107. */
  108. public function auditStatus()
  109. {
  110. $this->_audit();
  111. }
  112. /**
  113. * 提现打款操作
  114. * @auth true
  115. * @throws \think\db\exception\DataNotFoundException
  116. * @throws \think\db\exception\DbException
  117. * @throws \think\db\exception\ModelNotFoundException
  118. */
  119. public function auditPayment()
  120. {
  121. $this->_audit();
  122. }
  123. /**
  124. * 提现审核打款
  125. * @auth true
  126. * @throws \think\db\exception\DataNotFoundException
  127. * @throws \think\db\exception\DbException
  128. * @throws \think\db\exception\ModelNotFoundException
  129. */
  130. private function _audit()
  131. {
  132. if ($this->request->isGet()) {
  133. $this->_form($this->table, 'audit', 'code');
  134. } else {
  135. $data = $this->_vali([
  136. 'code.require' => '打款单号不能为空!',
  137. 'status.require' => '交易审核操作类型!',
  138. 'status.in:0,1,2,3,4' => '交易审核操作类型!',
  139. 'remark.default' => '',
  140. ]);
  141. $map = ['code' => $data['code']];
  142. $find = $this->app->db->name($this->table)->where($map)->find();
  143. if (empty($find)) $this->error('不允许操作审核!');
  144. // 提现状态(0已拒绝, 1待审核, 2已审核, 3打款中, 4已打款, 5已收款)
  145. if (in_array($data['status'], [0, 1, 2, 3])) {
  146. $data['last_at'] = date('Y-m-d H:i:s');
  147. } elseif ($data['status'] == 4) {
  148. $data['trade_no'] = CodeExtend::uniqidDate(20);
  149. $data['trade_time'] = date('Y-m-d H:i:s');
  150. $data['change_time'] = date('Y-m-d H:i:s');
  151. $data['change_desc'] = ($data['remark'] ?: '线下打款成功') . ' By ' . AdminService::instance()->getUserName();
  152. }
  153. if ($this->app->db->name($this->table)->strict(false)->where($map)->update($data) !== false) {
  154. $this->success('操作成功');
  155. } else {
  156. $this->error('操作失败!');
  157. }
  158. }
  159. }
  160. /**
  161. * 后台打款服务
  162. * @auth true
  163. */
  164. public function sync()
  165. {
  166. $this->_queue('提现到微信余额定时处理', 'xdata:UserTransfer', 0, [], 0, 50);
  167. }
  168. }