123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <?php
- namespace app\data\controller;
- use app\data\service\PrizeService;
- use think\admin\Controller;
- /**
- * 用户等级管理
- * Class UserLevel
- * @package app\data\controller
- */
- class UserLevel extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- private $table = 'DataUserLevel';
- /**
- * 用户等级管理
- * @auth true
- * @menu true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function index()
- {
- $this->title = '用户等级管理';
- $this->_query($this->table)->order('number asc')->page();
- }
- /**
- * 数据列表处理
- * @param array $data
- */
- protected function _page_filter(array &$data)
- {
- foreach ($data as &$vo) {
- $vo['rebate_rule'] = str2arr($vo['rebate_rule']);
- foreach ($vo['rebate_rule'] as &$v) {
- $v = PrizeService::instance()->name($v);
- }
- }
- }
- /**
- * 添加用户等级
- * @auth true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function add()
- {
- $this->_form($this->table, 'form');
- }
- /**
- * 编辑用户等级
- * @auth true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function edit()
- {
- $this->_form($this->table, 'form');
- }
- /**
- * 表单数据处理
- * @param array $vo
- */
- protected function _form_filter(array &$vo)
- {
- if ($this->request->isGet()) {
- $this->prizes = PrizeService::PRIZES;
- $vo['rebate_rule'] = str2arr($vo['rebate_rule'] ?? '');
- } else {
- $vo['utime'] = time();
- $vo['rebate_rule'] = arr2str($vo['rebate_rule'] ?? []);
- // 用户升级条件开关
- $vo['goods_vip_status'] = isset($vo['goods_vip_status']) ? 1 : 0;
- $vo['teams_users_status'] = isset($vo['teams_users_status']) ? 1 : 0;
- $vo['teams_direct_status'] = isset($vo['teams_direct_status']) ? 1 : 0;
- $vo['teams_indirect_status'] = isset($vo['teams_indirect_status']) ? 1 : 0;
- $vo['order_amount_status'] = isset($vo['order_amount_status']) ? 1 : 0;
- // 根据数量判断状态
- $vo['teams_users_status'] = intval($vo['teams_users_status'] && $vo['teams_users_number'] > 0);
- $vo['teams_direct_status'] = intval($vo['teams_direct_status'] && $vo['teams_direct_number'] > 0);
- $vo['teams_indirect_status'] = intval($vo['teams_indirect_status'] && $vo['teams_indirect_number'] > 0);
- $vo['order_amount_status'] = intval($vo['order_amount_status'] && $vo['order_amount_number'] > 0);
- $state = 0;
- foreach ($vo as $k => $v) if (stripos($k, '_status') !== false) $state += $v;
- if (empty($state)) $this->error('升级条件不能为空!');
- }
- }
- /**
- * 表单结果处理
- * @param boolean $state
- * @throws \think\db\exception\DbException
- */
- public function _form_result(bool $state)
- {
- if ($state) {
- $order = 'number asc,utime desc';
- if (input('old_number', 100) < input('number', '0')) $order = 'number asc,utime asc';
- foreach ($this->app->db->name($this->table)->order($order)->cursor() as $k => $vo) {
- $this->app->db->name($this->table)->where(['id' => $vo['id']])->update(['number' => $k + 1]);
- }
- }
- }
- /**
- * 重新计算会员级别
- * @auth true
- */
- public function sync()
- {
- $this->_queue('重新计算所有会员等级', 'xdata:UserLevel');
- }
- /**
- * 修改等级状态
- * @auth true
- * @throws \think\db\exception\DbException
- */
- public function state()
- {
- $this->_save($this->table);
- }
- /**
- * 删除用户等级
- * @auth true
- * @throws \think\db\exception\DbException
- */
- public function remove()
- {
- $this->_delete($this->table);
- }
- /**
- * 状态变更处理
- * @auth true
- * @throws \think\db\exception\DbException
- */
- protected function _save_result()
- {
- $this->_form_result(true);
- }
- /**
- * 删除结果处理
- * @throws \think\db\exception\DbException
- */
- protected function _delete_result()
- {
- $this->_form_result(true);
- }
- }
|