CRMEB/crmeb/app/api/controller/v1/user/DivisionController.php
2026-03-23 14:57:47 +08:00

170 lines
5.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\api\controller\v1\user;
use app\Request;
use app\services\agent\DivisionAgentApplyServices;
use app\services\agent\DivisionServices;
use app\services\other\AgreementServices;
use app\services\user\UserServices;
use crmeb\services\CacheService;
use think\db\exception\DataNotFoundException;
use think\db\exception\DbException;
use think\db\exception\ModelNotFoundException;
class DivisionController
{
protected $services;
/**
* DivisionController constructor.
* @param DivisionAgentApplyServices $services
*/
public function __construct(DivisionAgentApplyServices $services)
{
$this->services = $services;
}
/**
* 申请代理商
* @param Request $request
* @param $id
* @return mixed
*/
public function applyAgent(Request $request, $id)
{
$data = $request->postMore([
['uid', 0],
['agent_name', ''],
['name', ''],
['phone', 0],
['code', 0],
['division_invite', 0],
['images', []]
]);
$verifyCode = CacheService::get('code_' . $data['phone']);
if ($verifyCode != $data['code']) return app('json')->fail('验证码错误');
if ($data['division_invite'] == 0) return app('json')->fail('请填写邀请码');
$this->services->applyAgent($data, $id);
return app('json')->success('提交成功');
}
/**
* 申请详情
* @param Request $request
* @return mixed
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public function applyInfo(Request $request)
{
$uid = $request->uid();
$data = $this->services->applyInfo($uid);
return app('json')->success($data);
}
/**
* 移动端获取规则
* @param AgreementServices $agreementServices
* @return mixed
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public function getAgentAgreement(AgreementServices $agreementServices)
{
$data = $agreementServices->getAgreementBytype(2);
return app('json')->success($data);
}
/**
* 员工列表
* @param Request $request
* @return mixed
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public function getStaffList(Request $request)
{
$where = $request->postMore([
['keyword', ''],
['sort', ''],
]);
$where['agent_id'] = $request->uid();
return app('json')->success($this->services->getStaffList($request->isRoutine(), $where));
}
/**
* 设置员工比例
* @param Request $request
* @return mixed
*/
public function setStaffPercent(Request $request)
{
[$agentPercent, $uid] = $request->postMore([
['agent_percent', ''],
['uid', 0],
], true);
$agentId = $request->uid();
if (!$uid) return app('json')->fail('参数错误');
/** @var UserServices $userService */
$userService = app()->make(UserServices::class);
$upPercent = $userService->value(['uid' => $agentId], 'division_percent');
if ($agentPercent >= $upPercent) return app('json')->fail('比例不能大于您的比例');
$userService->update(['uid' => $uid, 'agent_id' => $agentId], ['division_percent' => $agentPercent]);
return app('json')->success('设置成功');
}
/**
* 删除员工
* @param Request $request
* @param $uid
* @return mixed
*/
public function delStaff(Request $request, $uid)
{
if (!$uid) return app('json')->fail('参数错误');
$agentId = $request->uid();
/** @var UserServices $userService */
$userService = app()->make(UserServices::class);
$userService->update(['uid' => $uid, 'agent_id' => $agentId], ['division_percent' => 0, 'agent_id' => 0, 'division_id' => 0, 'staff_id' => 0, 'division_type' => 0, 'is_staff' => 0]);
return app('json')->success('删除成功');
}
/**
* 绑定员工方法
* @param Request $request
* @return \think\Response
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
* @author 吴汐
* @email 442384644@qq.com
* @date 2024/2/2
*/
public function agentSpread(Request $request)
{
[$agentId, $agentCode] = $request->postMore([
['agent_id', 0],
['agent_code', 0],
], true);
$res = app()->make(DivisionServices::class)->agentSpreadStaff($request->uid(), (int)$agentId, (int)$agentCode);
if ($res) {
return app('json')->success($res);
} else {
return app('json')->fail('无操作');
}
}
}