Upgrade.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <?php
  2. namespace app\data\controller\base;
  3. use app\data\service\RebateService;
  4. use think\admin\Controller;
  5. /**
  6. * 用户等级管理
  7. * Class Upgrade
  8. * @package app\data\controller\base
  9. */
  10. class Upgrade extends Controller
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. private $table = 'DataBaseUpgrade';
  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 = RebateService::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 = RebateService::PRIZES;
  73. $vo['rebate_rule'] = str2arr($vo['rebate_rule'] ?? '');
  74. if (empty($vo['number'])) {
  75. $vo['number'] = $this->app->db->name($this->table)->max('number') + 1;
  76. }
  77. } else {
  78. $vo['utime'] = time();
  79. $vo['rebate_rule'] = arr2str($vo['rebate_rule'] ?? []);
  80. // 用户升级条件开关
  81. $vo['goods_vip_status'] = isset($vo['goods_vip_status']) ? 1 : 0;
  82. $vo['teams_users_status'] = isset($vo['teams_users_status']) ? 1 : 0;
  83. $vo['teams_direct_status'] = isset($vo['teams_direct_status']) ? 1 : 0;
  84. $vo['teams_indirect_status'] = isset($vo['teams_indirect_status']) ? 1 : 0;
  85. $vo['order_amount_status'] = isset($vo['order_amount_status']) ? 1 : 0;
  86. // 根据数量判断状态
  87. $vo['teams_users_status'] = intval($vo['teams_users_status'] && $vo['teams_users_number'] > 0);
  88. $vo['teams_direct_status'] = intval($vo['teams_direct_status'] && $vo['teams_direct_number'] > 0);
  89. $vo['teams_indirect_status'] = intval($vo['teams_indirect_status'] && $vo['teams_indirect_number'] > 0);
  90. $vo['order_amount_status'] = intval($vo['order_amount_status'] && $vo['order_amount_number'] > 0);
  91. // 检查升级条件配置
  92. $count = 0;
  93. foreach ($vo as $k => $v) if (is_numeric(stripos($k, '_status'))) $count += $v;
  94. if (empty($count)) $this->error('升级条件不能为空!');
  95. }
  96. }
  97. /**
  98. * 表单结果处理
  99. * @param boolean $state
  100. * @throws \think\db\exception\DbException
  101. */
  102. public function _form_result(bool $state)
  103. {
  104. if ($state) {
  105. $order = 'number asc,utime desc';
  106. if (input('old_number', 100) < input('number', '0')) $order = 'number asc,utime asc';
  107. foreach ($this->app->db->name($this->table)->order($order)->cursor() as $k => $vo) {
  108. $this->app->db->name($this->table)->where(['id' => $vo['id']])->update(['number' => $k + 1]);
  109. }
  110. }
  111. }
  112. /**
  113. * 重算用户等级
  114. * @auth true
  115. */
  116. public function sync()
  117. {
  118. $this->_queue('重新计算所有用户等级', 'xdata:UserUpgrade');
  119. }
  120. /**
  121. * 修改等级状态
  122. * @auth true
  123. * @throws \think\db\exception\DbException
  124. */
  125. public function state()
  126. {
  127. $this->_save($this->table);
  128. }
  129. /**
  130. * 删除用户等级
  131. * @auth true
  132. * @throws \think\db\exception\DbException
  133. */
  134. public function remove()
  135. {
  136. $this->_delete($this->table);
  137. }
  138. /**
  139. * 状态变更处理
  140. * @auth true
  141. * @throws \think\db\exception\DbException
  142. */
  143. protected function _save_result()
  144. {
  145. $this->_form_result(true);
  146. }
  147. /**
  148. * 删除结果处理
  149. * @throws \think\db\exception\DbException
  150. */
  151. protected function _delete_result()
  152. {
  153. $this->_form_result(true);
  154. }
  155. }