| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <?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('无操作');
- }
- }
- }
|