Balance.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?php
  2. namespace app\data\controller\user;
  3. use app\data\service\UserAdminService;
  4. use app\data\service\UserBalanceService;
  5. use app\data\service\UserUpgradeService;
  6. use think\admin\Controller;
  7. use think\admin\extend\CodeExtend;
  8. use think\admin\service\AdminService;
  9. /**
  10. * 余额充值记录
  11. * Class Balance
  12. * @package app\data\controller\user
  13. */
  14. class Balance extends Controller
  15. {
  16. /**
  17. * 绑定数据表
  18. * @var string
  19. */
  20. private $table = 'DataUserBalance';
  21. /**
  22. * 余额充值管理
  23. * @auth true
  24. * @menu true
  25. * @throws \think\db\exception\DataNotFoundException
  26. * @throws \think\db\exception\DbException
  27. * @throws \think\db\exception\ModelNotFoundException
  28. */
  29. public function index()
  30. {
  31. $this->title = '余额充值记录';
  32. // 统计用户余额
  33. $this->balance = UserBalanceService::instance()->amount(0);
  34. // 现有余额类型
  35. $this->names = $this->app->db->name($this->table)->group('name')->column('name');
  36. // 创建查询对象
  37. $query = $this->_query($this->table)->equal('name,vip_upgrade');
  38. // 用户搜索查询
  39. $db = $this->_query('DataUser')->like('phone#user_phone,nickname#user_nickname')->db();
  40. if ($db->getOptions('where')) $query->whereRaw("uid in {$db->field('id')->buildSql()}");
  41. // 数据查询分页
  42. $query->where(['deleted' => 0])->like('code,remark')->dateBetween('create_at')->order('id desc')->page();
  43. }
  44. /**
  45. * 数据列表处理
  46. * @param array $data
  47. */
  48. protected function _index_page_filter(array &$data)
  49. {
  50. UserAdminService::instance()->buildByUid($data);
  51. $uids = array_unique(array_column($data, 'create_by'));
  52. $users = $this->app->db->name('SystemUser')->whereIn('id', $uids)->column('username', 'id');
  53. $this->upgrades = UserUpgradeService::instance()->levels();
  54. foreach ($data as &$vo) {
  55. $vo['vip_upgradeinfo'] = $this->upgrades[$vo['vip_upgrade']] ?? [];
  56. $vo['create_byname'] = $users[$vo['create_by']] ?? '';
  57. }
  58. }
  59. /**
  60. * 添加余额充值
  61. * @auth true
  62. * @throws \think\db\exception\DataNotFoundException
  63. * @throws \think\db\exception\DbException
  64. * @throws \think\db\exception\ModelNotFoundException
  65. */
  66. public function add()
  67. {
  68. $data = $this->_vali(['uid.require' => '用户UID不能为空!']);
  69. $this->user = $this->app->db->name('DataUser')->where(['id' => $data['uid']])->find();
  70. if (empty($this->user)) $this->error('待充值的用户不存在!');
  71. $this->_form($this->table, 'form');
  72. }
  73. /**
  74. * 表单数据处理
  75. * @param array $data
  76. */
  77. protected function _form_filter(array &$data)
  78. {
  79. if (empty($data['code'])) {
  80. $data['code'] = CodeExtend::uniqidDate('20', 'B');
  81. }
  82. if ($this->request->isGet()) {
  83. $this->upgrades = UserUpgradeService::instance()->levels();
  84. }
  85. if ($this->request->isPost()) {
  86. $data['create_by'] = AdminService::instance()->getUserId();
  87. if (empty(floatval($data['amount'])) && empty($data['vip_upgrade'])) {
  88. $this->error('金额为零并且没有升级行为!');
  89. }
  90. }
  91. }
  92. /**
  93. * 表单结果处理
  94. * @param bool $state
  95. * @param array $data
  96. * @throws \think\db\exception\DbException
  97. */
  98. protected function _form_result(bool $state, array $data)
  99. {
  100. if ($state && isset($data['uid'])) {
  101. UserBalanceService::instance()->amount($data['uid']);
  102. UserUpgradeService::instance()->upgrade($data['uid']);
  103. }
  104. }
  105. /**
  106. * 删除充值记录
  107. * @auth true
  108. * @throws \think\db\exception\DbException
  109. */
  110. public function remove()
  111. {
  112. $db = $this->app->db->name($this->table);
  113. $this->_delete($db->whereLike('code', "B%"));
  114. }
  115. /**
  116. * 删除结果处理
  117. * @param bool $state
  118. * @throws \think\db\exception\DbException
  119. */
  120. protected function _delete_result(bool $state)
  121. {
  122. if ($state) {
  123. $map = [['id', 'in', str2arr(input('id', ''))]];
  124. foreach ($this->app->db->name($this->table)->where($map)->cursor() as $vo) {
  125. UserBalanceService::instance()->amount($vo['uid']);
  126. UserUpgradeService::instance()->upgrade($vo['uid']);
  127. }
  128. }
  129. }
  130. }