UserLevel.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <?php
  2. namespace app\data\controller;
  3. use app\data\service\PrizeService;
  4. use think\admin\Controller;
  5. /**
  6. * 用户等级管理
  7. * Class UserLevel
  8. * @package app\data\controller
  9. */
  10. class UserLevel extends Controller
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. private $table = 'DataUserLevel';
  17. /**
  18. * 用户等级管理
  19. * @auth true
  20. * @menu true
  21. * @throws \think\db\exception\DataNotFoundException
  22. * @throws \think\db\exception\DbException
  23. * @throws \think\db\exception\ModelNotFoundException
  24. */
  25. public function index()
  26. {
  27. $this->title = '用户等级管理';
  28. $this->_query($this->table)->order('number asc')->page();
  29. }
  30. /**
  31. * 数据列表处理
  32. * @param array $data
  33. */
  34. protected function _page_filter(array &$data)
  35. {
  36. foreach ($data as &$vo) {
  37. $vo['rebate_rule'] = str2arr($vo['rebate_rule']);
  38. foreach ($vo['rebate_rule'] as &$v) {
  39. $v = PrizeService::instance()->name($v);
  40. }
  41. }
  42. }
  43. /**
  44. * 添加用户等级
  45. * @auth true
  46. * @throws \think\db\exception\DataNotFoundException
  47. * @throws \think\db\exception\DbException
  48. * @throws \think\db\exception\ModelNotFoundException
  49. */
  50. public function add()
  51. {
  52. $this->_form($this->table, 'form');
  53. }
  54. /**
  55. * 编辑用户等级
  56. * @auth true
  57. * @throws \think\db\exception\DataNotFoundException
  58. * @throws \think\db\exception\DbException
  59. * @throws \think\db\exception\ModelNotFoundException
  60. */
  61. public function edit()
  62. {
  63. $this->_form($this->table, 'form');
  64. }
  65. /**
  66. * 表单数据处理
  67. * @param array $vo
  68. */
  69. protected function _form_filter(array &$vo)
  70. {
  71. if ($this->request->isGet()) {
  72. $this->prizes = PrizeService::PRIZES;
  73. $vo['rebate_rule'] = str2arr($vo['rebate_rule'] ?? '');
  74. } else {
  75. $vo['utime'] = time();
  76. $vo['rebate_rule'] = arr2str($vo['rebate_rule'] ?? []);
  77. // 用户升级条件开关
  78. $vo['goods_vip_status'] = isset($vo['goods_vip_status']) ? 1 : 0;
  79. $vo['teams_users_status'] = isset($vo['teams_users_status']) ? 1 : 0;
  80. $vo['teams_direct_status'] = isset($vo['teams_direct_status']) ? 1 : 0;
  81. $vo['teams_indirect_status'] = isset($vo['teams_indirect_status']) ? 1 : 0;
  82. $vo['order_amount_status'] = isset($vo['order_amount_status']) ? 1 : 0;
  83. // 根据数量判断状态
  84. $vo['teams_users_status'] = intval($vo['teams_users_status'] && $vo['teams_users_number'] > 0);
  85. $vo['teams_direct_status'] = intval($vo['teams_direct_status'] && $vo['teams_direct_number'] > 0);
  86. $vo['teams_indirect_status'] = intval($vo['teams_indirect_status'] && $vo['teams_indirect_number'] > 0);
  87. $vo['order_amount_status'] = intval($vo['order_amount_status'] && $vo['order_amount_number'] > 0);
  88. $state = 0;
  89. foreach ($vo as $k => $v) if (stripos($k, '_status') !== false) $state += $v;
  90. if (empty($state)) $this->error('升级条件不能为空!');
  91. }
  92. }
  93. /**
  94. * 表单结果处理
  95. * @param boolean $state
  96. * @throws \think\db\exception\DbException
  97. */
  98. public function _form_result(bool $state)
  99. {
  100. if ($state) {
  101. $order = 'number asc,utime desc';
  102. if (input('old_number', 100) < input('number', '0')) $order = 'number asc,utime asc';
  103. foreach ($this->app->db->name($this->table)->order($order)->cursor() as $k => $vo) {
  104. $this->app->db->name($this->table)->where(['id' => $vo['id']])->update(['number' => $k + 1]);
  105. }
  106. }
  107. }
  108. /**
  109. * 重新计算会员级别
  110. * @auth true
  111. */
  112. public function sync()
  113. {
  114. $this->_queue('重新计算所有会员等级', 'xdata:UserLevel');
  115. }
  116. /**
  117. * 修改等级状态
  118. * @auth true
  119. * @throws \think\db\exception\DbException
  120. */
  121. public function state()
  122. {
  123. $this->_save($this->table);
  124. }
  125. /**
  126. * 删除用户等级
  127. * @auth true
  128. * @throws \think\db\exception\DbException
  129. */
  130. public function remove()
  131. {
  132. $this->_delete($this->table);
  133. }
  134. /**
  135. * 状态变更处理
  136. * @auth true
  137. * @throws \think\db\exception\DbException
  138. */
  139. protected function _save_result()
  140. {
  141. $this->_form_result(true);
  142. }
  143. /**
  144. * 删除结果处理
  145. * @throws \think\db\exception\DbException
  146. */
  147. protected function _delete_result()
  148. {
  149. $this->_form_result(true);
  150. }
  151. }