You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
367 lines
16 KiB
367 lines
16 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\services\agent;
|
|
|
|
use app\dao\agent\AgentLevelDao;
|
|
use app\services\BaseServices;
|
|
use app\services\user\UserServices;
|
|
use crmeb\exceptions\AdminException;
|
|
use crmeb\exceptions\ApiException;
|
|
use crmeb\services\FormBuilder as Form;
|
|
use think\facade\Route as Url;
|
|
|
|
|
|
/**
|
|
* Class AgentLevelServices
|
|
* @package app\services\agent
|
|
*/
|
|
class AgentLevelServices extends BaseServices
|
|
{
|
|
/**
|
|
* AgentLevelServices constructor.
|
|
* @param AgentLevelDao $dao
|
|
*/
|
|
public function __construct(AgentLevelDao $dao)
|
|
{
|
|
$this->dao = $dao;
|
|
}
|
|
|
|
/**
|
|
* 获取某一个等级信息
|
|
* @param int $id
|
|
* @param string $field
|
|
* @param array $with
|
|
* @return array|\think\Model|null
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getLevelInfo(int $id, string $field = '*', array $with = [])
|
|
{
|
|
return $this->dao->getOne(['id' => $id, 'is_del' => 0], $field, $with);
|
|
}
|
|
|
|
/**
|
|
* 获取等级列表
|
|
* @param array $where
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getLevelList(array $where)
|
|
{
|
|
$where['is_del'] = 0;
|
|
[$page, $limit] = $this->getPageValue();
|
|
$list = $this->dao->getList($where, '*', ['task' => function ($query) {
|
|
$query->field('count(*) as sum');
|
|
}], $page, $limit);
|
|
$count = $this->dao->count($where);
|
|
foreach ($list as &$item) {
|
|
$item['one_brokerage_ratio'] = bcdiv(bcmul((string)sys_config('store_brokerage_ratio'), bcadd('100', (string)$item['one_brokerage'], 2), 2), '100', 2);
|
|
$item['two_brokerage_ratio'] = bcdiv(bcmul((string)sys_config('store_brokerage_two'), bcadd('100', (string)$item['two_brokerage'], 2), 2), '100', 2);
|
|
}
|
|
return compact('count', 'list');
|
|
}
|
|
|
|
/**
|
|
* 商城获取分销员等级列表
|
|
* @param int $uid
|
|
* @return array
|
|
*/
|
|
public function getUserlevelList(int $uid)
|
|
{
|
|
//商城分销是否开启
|
|
if (!sys_config('brokerage_func_status')) {
|
|
return [];
|
|
}
|
|
/** @var UserServices $userServices */
|
|
$userServices = app()->make(UserServices::class);
|
|
$user = $userServices->getUserInfo($uid);
|
|
if (!$user) {
|
|
throw new ApiException(410032);
|
|
}
|
|
//检测升级
|
|
$this->checkUserLevelFinish($uid);
|
|
|
|
$list = $this->dao->getList(['is_del' => 0, 'status' => 1]);
|
|
foreach ($list as &$item) {
|
|
$item['image'] = set_file_url($item['image']);
|
|
}
|
|
$agent_level = $user['agent_level'] ?? 0;
|
|
//没等级默认最低等级
|
|
if (!$agent_level) {
|
|
$levelInfo = $list[0] ?? [];
|
|
$levelInfo['grade'] = -1;
|
|
} else {
|
|
$levelInfo = $this->getLevelInfo($agent_level) ?: [];
|
|
}
|
|
$sum_task = $finish_task = 0;
|
|
if ($levelInfo) {
|
|
/** @var AgentLevelTaskServices $levelTaskServices */
|
|
$levelTaskServices = app()->make(AgentLevelTaskServices::class);
|
|
$sum_task = $levelTaskServices->count(['level_id' => $levelInfo['id'], 'is_del' => 0, 'status' => 1]);
|
|
/** @var AgentLevelTaskRecordServices $levelTaskRecordServices */
|
|
$levelTaskRecordServices = app()->make(AgentLevelTaskRecordServices::class);
|
|
$finish_task = $levelTaskRecordServices->count(['level_id' => $levelInfo['id'], 'uid' => $uid]);
|
|
}
|
|
$levelInfo['sum_task'] = $sum_task;
|
|
$levelInfo['finish_task'] = $finish_task;
|
|
return ['user' => $user, 'level_list' => $list, 'level_info' => $levelInfo];
|
|
}
|
|
|
|
/**
|
|
* 获取下一等级
|
|
* @param int $level_id
|
|
* @return array|\think\Model|null
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getNextLevelInfo(int $level_id = 0)
|
|
{
|
|
$grade = 0;
|
|
if ($level_id) {
|
|
$grade = $this->dao->value(['id' => $level_id, 'is_del' => 0, 'status' => 1], 'grade') ?: 0;
|
|
}
|
|
return $this->dao->getOne([['grade', '>', $grade], ['is_del', '=', 0], ['status', '=', 1]]);
|
|
}
|
|
|
|
/**
|
|
* 检测用户是否能升级
|
|
* @param int $uid
|
|
* @param array $uids
|
|
* @return bool
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function checkUserLevelFinish(int $uid, array $uids = [])
|
|
{
|
|
//商城分销是否开启
|
|
if (!sys_config('brokerage_func_status')) {
|
|
return false;
|
|
}
|
|
/** @var UserServices $userServices */
|
|
$userServices = app()->make(UserServices::class);
|
|
$userInfo = $userServices->getUserInfo($uid);
|
|
if (!$userInfo) {
|
|
return false;
|
|
}
|
|
$list = $this->dao->getList(['is_del' => 0, 'status' => 1]);
|
|
if (!$list) {
|
|
return false;
|
|
}
|
|
if (!$uids) {
|
|
//获取上级uid || 开启自购返回自己uid
|
|
$spread_uid = $userServices->getSpreadUid($uid, $userInfo);
|
|
$two_spread_uid = 0;
|
|
if ($spread_uid > 0 && $one_user_info = $userServices->getUserInfo($spread_uid)) {
|
|
$two_spread_uid = $userServices->getSpreadUid($spread_uid, $one_user_info, false);
|
|
}
|
|
$uids = array_unique([$uid, $spread_uid, $two_spread_uid]);
|
|
}
|
|
foreach ($uids as $uid) {
|
|
if ($uid <= 0) continue;
|
|
if ($uid != $userInfo['uid']) {
|
|
$userInfo = $userServices->getUserInfo($uid);
|
|
}
|
|
$now_grade = 0;
|
|
if ($userInfo['agent_level']) {
|
|
$now_grade = $this->dao->value(['id' => $userInfo['agent_level']], 'grade') ?: 0;
|
|
}
|
|
foreach ($list as $levelInfo) {
|
|
if (!$levelInfo || $levelInfo['grade'] <= $now_grade) {
|
|
continue;
|
|
}
|
|
/** @var AgentLevelTaskServices $levelTaskServices */
|
|
$levelTaskServices = app()->make(AgentLevelTaskServices::class);
|
|
$task_list = $levelTaskServices->getTaskList(['level_id' => $levelInfo['id'], 'is_del' => 0, 'status' => 1]);
|
|
if (!$task_list) {
|
|
continue;
|
|
}
|
|
foreach ($task_list as $task) {
|
|
$levelTaskServices->checkLevelTaskFinish($uid, (int)$task['id'], $task);
|
|
}
|
|
/** @var AgentLevelTaskRecordServices $levelTaskRecordServices */
|
|
$levelTaskRecordServices = app()->make(AgentLevelTaskRecordServices::class);
|
|
$ids = array_column($task_list, 'id');
|
|
$finish_task = $levelTaskRecordServices->count(['level_id' => $levelInfo['id'], 'uid' => $uid, 'task_id' => $ids]);
|
|
//任务完成升这一等级
|
|
if ($finish_task >= count($task_list)) {
|
|
$userServices->update($uid, ['agent_level' => $levelInfo['grade']]);
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 分销等级上浮
|
|
* @param int $uid
|
|
* @param array $userInfo
|
|
* @return array|int[]
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getAgentLevelBrokerage(int $uid, $userInfo = [])
|
|
{
|
|
$one_brokerage_up = $two_brokerage_up = $spread_one_uid = $spread_two_uid = 0;
|
|
if (!$uid) {
|
|
return [$one_brokerage_up, $two_brokerage_up, $spread_one_uid, $spread_two_uid];
|
|
}
|
|
//商城分销是否开启
|
|
if (!sys_config('brokerage_func_status')) {
|
|
return [$one_brokerage_up, $two_brokerage_up, $spread_one_uid, $spread_two_uid];
|
|
}
|
|
/** @var UserServices $userServices */
|
|
$userServices = app()->make(UserServices::class);
|
|
if (!$userInfo) {
|
|
$userInfo = $userServices->getUserInfo($uid);
|
|
}
|
|
if (!$userInfo) {
|
|
return [$one_brokerage_up, $two_brokerage_up, $spread_one_uid, $spread_two_uid];
|
|
}
|
|
//获取上级uid || 开启自购返回自己uid
|
|
$spread_one_uid = $userServices->getSpreadUid($uid, $userInfo);
|
|
$one_agent_level = 0;
|
|
$two_agent_level = 0;
|
|
$spread_two_uid = 0;
|
|
if ($spread_one_uid > 0 && $one_user_info = $userServices->getUserInfo($spread_one_uid)) {
|
|
$one_agent_level = $one_user_info['agent_level'] ?? 0;
|
|
$spread_two_uid = $userServices->getSpreadUid($spread_one_uid, $one_user_info, false);
|
|
if ($spread_two_uid > 0 && $two_user_info = $userServices->getUserInfo($spread_two_uid)) {
|
|
$two_agent_level = $two_user_info['agent_level'] ?? 0;
|
|
}
|
|
}
|
|
$one_brokerage_up = $one_agent_level ? ($this->getLevelInfo($one_agent_level)['one_brokerage'] ?? 0) : 0;
|
|
$two_brokerage_up = $two_agent_level ? ($this->getLevelInfo($two_agent_level)['two_brokerage'] ?? 0) : 0;
|
|
return [$one_brokerage_up, $two_brokerage_up, $spread_one_uid, $spread_two_uid];
|
|
}
|
|
|
|
/**
|
|
* 添加等级表单
|
|
* @param int $id
|
|
* @return array
|
|
* @throws \FormBuilder\Exception\FormBuilderException
|
|
*/
|
|
public function createForm()
|
|
{
|
|
$field[] = Form::input('name', '等级名称')->maxlength(8)->col(24);
|
|
$field[] = Form::number('grade', '等级', 0)->min(0)->precision(0);
|
|
$field[] = Form::frameImage('image', '背景图', Url::buildUrl(config('app.admin_prefix', 'admin') . '/widget.images/index', array('fodder' => 'image')))->icon('el-icon-picture-outline')->width('950px')->height('560px')->props(['footer' => false]);
|
|
$field[] = Form::number('one_brokerage', '一级上浮', 0)->appendRule('suffix', [
|
|
'type' => 'div',
|
|
'class' => 'tips-info',
|
|
'domProps' => ['innerHTML' => '在分销一级佣金基础上浮(0-1000之间整数)百分比,目前一级返佣比率:10%,上浮5%,则返佣比率:一级返佣比率 * (1 + 一级上浮比率) = 10.50%']
|
|
])->max(1000)->precision(0);
|
|
$field[] = Form::number('two_brokerage', '二级上浮', 0)->appendRule('suffix', [
|
|
'type' => 'div',
|
|
'class' => 'tips-info',
|
|
'domProps' => ['innerHTML' => '在分销二级佣金基础上浮(0-1000之间整数)百分比,目前二级返佣比率:10%,上浮2%,则返佣比率:二级返佣比率 * (1 + 二级上浮比率) = 5.10%']
|
|
])->min(0)->max(1000)->precision(0);
|
|
$field[] = Form::radio('status', '是否显示', 1)->options([['value' => 1, 'label' => '显示'], ['value' => 0, 'label' => '隐藏']]);
|
|
return create_form('添加分销员等级', $field, Url::buildUrl('/agent/level'), 'POST');
|
|
}
|
|
|
|
/**
|
|
* 获取修改等级表单
|
|
* @param int $id
|
|
* @return array
|
|
* @throws \FormBuilder\Exception\FormBuilderException
|
|
*/
|
|
public function editForm(int $id)
|
|
{
|
|
$levelInfo = $this->getLevelInfo($id);
|
|
if (!$levelInfo)
|
|
throw new AdminException(100026);
|
|
$field = [];
|
|
$field[] = Form::hidden('id', $id);
|
|
$field[] = Form::input('name', '等级名称', $levelInfo['name'])->maxlength(8)->col(24);
|
|
$field[] = Form::number('grade', '等级', $levelInfo['grade'])->min(0)->precision(0);
|
|
$field[] = Form::frameImage('image', '背景图', Url::buildUrl(config('app.admin_prefix', 'admin') . '/widget.images/index', array('fodder' => 'image')), $levelInfo['image'])->icon('el-icon-picture-outline')->width('950px')->height('560px')->props(['footer' => false]);
|
|
$field[] = Form::number('one_brokerage', '一级上浮', $levelInfo['one_brokerage'])->appendRule('suffix', [
|
|
'type' => 'div',
|
|
'class' => 'tips-info',
|
|
'domProps' => ['innerHTML' => '在分销一级佣金基础上浮(0-1000之间整数)百分比,目前一级返佣比率:10%,上浮5%,则返佣比率:一级返佣比率 * (1 + 一级上浮比率) = 10.50%']
|
|
])->min(0)->max(1000)->precision(0);
|
|
$field[] = Form::number('two_brokerage', '二级上浮', $levelInfo['two_brokerage'])->appendRule('suffix', [
|
|
'type' => 'div',
|
|
'class' => 'tips-info',
|
|
'domProps' => ['innerHTML' => '在分销二级佣金基础上浮(0-1000之间整数)百分比,目前二级返佣比率:10%,上浮2%,则返佣比率:二级返佣比率 * (1 + 二级上浮比率) = 5.10%']
|
|
])->min(0)->max(1000)->precision(0);
|
|
$field[] = Form::radio('status', '是否显示', $levelInfo['status'])->options([['value' => 1, 'label' => '显示'], ['value' => 0, 'label' => '隐藏']]);
|
|
|
|
return create_form('编辑分销员等级', $field, Url::buildUrl('/agent/level/' . $id), 'PUT');
|
|
}
|
|
|
|
/**
|
|
* 赠送分销等级表单
|
|
* @param int $uid
|
|
* @return array
|
|
* @throws \FormBuilder\Exception\FormBuilderException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function levelForm(int $uid)
|
|
{
|
|
/** @var UserServices $userServices */
|
|
$userServices = app()->make(UserServices::class);
|
|
$userInfo = $userServices->getUserInfo($uid);
|
|
if (!$userInfo) {
|
|
throw new AdminException(400214);
|
|
}
|
|
$levelList = $this->dao->getList(['is_del' => 0, 'status' => 1], '*', [], 0, 0, $userInfo['agent_level']);
|
|
$setOptionLabel = function () use ($levelList) {
|
|
$menus = [];
|
|
foreach ($levelList as $level) {
|
|
$menus[] = ['value' => $level['id'], 'label' => $level['name']];
|
|
}
|
|
return $menus;
|
|
};
|
|
$field[] = Form::hidden('uid', $uid);
|
|
$field[] = Form::select('id', '分销等级', $userInfo['agent_level'] != 0 ? $userInfo['agent_level'] : '')->setOptions(Form::setOptions($setOptionLabel))->filterable(true);
|
|
return create_form('修改分销等级', $field, Url::buildUrl('/agent/give_level'), 'post');
|
|
}
|
|
|
|
/**
|
|
* 赠送分销等级
|
|
* @param int $uid
|
|
* @param int $id
|
|
* @return bool
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function givelevel(int $uid, int $id)
|
|
{
|
|
/** @var UserServices $userServices */
|
|
$userServices = app()->make(UserServices::class);
|
|
$userInfo = $userServices->getUserInfo($uid, 'uid');
|
|
if (!$userInfo) {
|
|
throw new AdminException(400214);
|
|
}
|
|
$levelInfo = $this->getLevelInfo($id, 'id');
|
|
if (!$levelInfo) {
|
|
throw new AdminException(400442);
|
|
}
|
|
if ($userServices->update($uid, ['agent_level' => $id]) === false) {
|
|
throw new AdminException(400219);
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
|