UserTransfer.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace app\data\controller;
  3. use app\data\service\UserService;
  4. use think\admin\Controller;
  5. use think\admin\extend\CodeExtend;
  6. use think\admin\service\AdminService;
  7. /**
  8. * 用户提现管理
  9. * Class UserTransfer
  10. * @package app\data\controller
  11. */
  12. class UserTransfer extends Controller
  13. {
  14. /**
  15. * 绑定数据表
  16. * @var string
  17. */
  18. private $table = 'DataUserTransfer';
  19. /**
  20. * 用户提现管理
  21. * @menu true
  22. * @auth true
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\DbException
  25. * @throws \think\db\exception\ModelNotFoundException
  26. */
  27. public function index()
  28. {
  29. $this->title = '用户提现管理';
  30. $query = $this->_query($this->table)->order('id desc');
  31. // 用户条件搜索
  32. $db = $this->_query('DataUser')->like('phone,username|nickname#nickname')->db();
  33. if ($db->getOptions('where')) $query->whereRaw("uid in {$db->field('id')->buildSql()}");
  34. // 数据列表处理
  35. $query->equal('type,status')->dateBetween('create_at')->page();
  36. }
  37. /**
  38. * 数据列表处理
  39. * @param array $data
  40. */
  41. protected function _page_filter(array &$data)
  42. {
  43. UserService::instance()->buildByUid($data);
  44. }
  45. /**
  46. * 提现审核打款
  47. * @auth true
  48. * @throws \think\db\exception\DataNotFoundException
  49. * @throws \think\db\exception\DbException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. */
  52. public function audit()
  53. {
  54. if ($this->request->isGet()) {
  55. $this->_form($this->table, 'audit', 'code');
  56. } else {
  57. $data = $this->_vali([
  58. 'remark.default' => '',
  59. 'code.require' => '打款单号不能为空!',
  60. 'status.require' => '交易审核操作类型!',
  61. 'status.in:0,1,2,3,4' => '交易审核操作类型!',
  62. ]);
  63. $map = ['code' => $data['code']];
  64. $find = $this->app->db->name($this->table)->where($map)->find();
  65. if (empty($find)) $this->error('不允许操作审核!');
  66. // 提现状态(0已拒绝, 1待审核, 2已审核, 3打款中, 4已打款, 5已收款)
  67. if (in_array($data['status'], [0, 1, 2, 3])) {
  68. $data['last_at'] = date('Y-m-d H:i:s');
  69. } elseif ($data['status'] == 4) {
  70. $data['trade_no'] = CodeExtend::uniqidDate(14);
  71. $data['trade_time'] = date('Y-m-d H:i:s');
  72. $data['change_time'] = date('Y-m-d H:i:s');
  73. $data['change_desc'] = ($data['remark'] ?: '线下打款成功') . ' By ' . AdminService::instance()->getUserName();
  74. }
  75. if ($this->app->db->name($this->table)->strict(false)->where($map)->update($data) !== false) {
  76. $this->success('操作成功');
  77. } else {
  78. $this->error('操作失败!');
  79. }
  80. }
  81. }
  82. /**
  83. * 后台打款服务
  84. * @auth true
  85. */
  86. public function sync()
  87. {
  88. $this->_queue('提现到余额定时处理', 'xdata:UserTransfer', 0, [], 0, 50);
  89. }
  90. }