123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- <?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\adminapi\controller\v1\agent;
- use app\adminapi\controller\AuthController;
- use app\services\agent\DivisionAgentApplyServices;
- use app\services\agent\DivisionServices;
- use app\services\other\AgreementServices;
- use app\services\user\UserServices;
- use crmeb\exceptions\AdminException;
- use think\facade\App;
- /**
- * 事业部控制器
- * Class Division
- * @package app\adminapi\controller\v1\agent
- */
- class Division extends AuthController
- {
- /**
- * Division constructor.
- * @param App $app
- * @param DivisionServices $services
- */
- public function __construct(App $app, DivisionServices $services)
- {
- parent::__construct($app);
- $this->services = $services;
- }
- /**
- * 事业部列表
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function divisionList()
- {
- $where = $this->request->getMore([
- ['division_type', 0],
- ['keyword', '']
- ]);
- if ($where['division_type'] == 2) {
- $where['division_id'] = $this->adminInfo['division_id'];
- }
- $data = $this->services->getDivisionList($where);
- return app('json')->success($data);
- }
- /**
- * 下级列表
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function divisionDownList()
- {
- [$type, $uid] = $this->request->getMore([
- ['division_type', 0],
- ['uid', 0],
- ], true);
- $data = $this->services->divisionDownList($type, $uid);
- return app('json')->success($data);
- }
- /**
- * 添加编辑事业部
- * @param $uid
- * @return mixed
- * @throws \FormBuilder\Exception\FormBuilderException
- */
- public function divisionCreate($uid)
- {
- return app('json')->success($this->services->getDivisionForm((int)$uid));
- }
- /**
- * 保存事业部
- * @return mixed
- */
- public function divisionSave()
- {
- $data = $this->request->postMore([
- ['uid', 0],
- ['aid', 0],
- ['division_percent', 0],
- ['division_end_time', ''],
- ['division_status', 1],
- ['account', ''],
- ['pwd', ''],
- ['conf_pwd', ''],
- ['division_name', ''],
- ['roles', []],
- ['image', []]
- ]);
- $this->services->divisionSave($data);
- return app('json')->success(100000);
- }
- /**
- * 添加编辑代理商
- * @param $uid
- * @return mixed
- * @throws \FormBuilder\Exception\FormBuilderException
- */
- public function divisionAgentCreate($uid)
- {
- return app('json')->success($this->services->getDivisionAgentForm((int)$uid));
- }
- /**
- * 保存代理商
- * @param UserServices $userServices
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function divisionAgentSave(UserServices $userServices)
- {
- $data = $this->request->postMore([
- ['division_id', 0],
- ['uid', 0],
- ['division_percent', 0],
- ['division_end_time', ''],
- ['division_status', 1],
- ['division_name', ''],
- ['edit', 0],
- ['image', []],
- ]);
- if ((int)$data['uid'] == 0) $data['uid'] = $data['image']['uid'];
- $userInfo = $userServices->getUserInfo($data['uid'], 'is_division,is_agent,is_staff');
- if (!$userInfo) throw new AdminException(100100);
- if ($userInfo['is_division']) throw new AdminException('此用户是事业部,请勿添加为代理商');
- if ($userInfo['is_agent']) throw new AdminException('此用户是代理商,无法重复添加');
- if ($userInfo['is_staff']) throw new AdminException('此用户是下级员工,无法添加为代理商');
- $divisionUserInfo = $userServices->count(['uid' => (int)$data['division_id'], 'is_division' => 1, 'division_id' => $data['division_id']]);
- if (!$divisionUserInfo) throw new AdminException(100100);
- $this->services->divisionAgentSave($data);
- return app('json')->success(100000);
- }
- /**
- * 设置状态
- * @param $status
- * @param $uid
- * @return mixed
- */
- public function setDivisionStatus($status, $uid)
- {
- $this->services->setDivisionStatus($status, $uid);
- return app('json')->success(100014);
- }
- /**
- * 删除成功
- * @param $type
- * @param $uid
- * @return mixed
- */
- public function delDivision($type, $uid)
- {
- $this->services->delDivision($type, $uid);
- return app('json')->success(100002);
- }
- /**
- * 后台申请列表
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function AdminApplyList()
- {
- $where = $this->request->getMore([
- ['uid', 0],
- ['division_id', 0],
- ['division_invite', ''],
- ['status', ''],
- ['keyword', ''],
- ['time', ''],
- ]);
- $where['division_id'] = $this->adminInfo['division_id'];
- /** @var DivisionAgentApplyServices $applyServices */
- $applyServices = app()->make(DivisionAgentApplyServices::class);
- $data = $applyServices->AdminApplyList($where);
- return app('json')->success($data);
- }
- /**
- * 审核表单
- * @param $id
- * @param $type
- * @return mixed
- * @throws \FormBuilder\Exception\FormBuilderException
- */
- public function examineApply($id, $type)
- {
- /** @var DivisionAgentApplyServices $applyServices */
- $applyServices = app()->make(DivisionAgentApplyServices::class);
- $data = $applyServices->examineApply($id, $type);
- return app('json')->success($data);
- }
- /**
- * 代理商审核
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function applyAgentSave()
- {
- $data = $this->request->getMore([
- ['type', 0],
- ['id', 0],
- ['division_percent', ''],
- ['division_end_time', ''],
- ['division_status', ''],
- ['refusal_reason', 0]
- ]);
- /** @var DivisionAgentApplyServices $applyServices */
- $applyServices = app()->make(DivisionAgentApplyServices::class);
- $data = $applyServices->applyAgentSave($data);
- return app('json')->success(100014);
- }
- /**
- * 删除代理商审核
- * @param $id
- * @return mixed
- */
- public function delApply($id)
- {
- /** @var DivisionAgentApplyServices $applyServices */
- $applyServices = app()->make(DivisionAgentApplyServices::class);
- $applyServices->delApply($id);
- return app('json')->success(100002);
- }
- /**
- * 添加员工表单
- * @param $uid
- * @return \think\Response
- * @throws \FormBuilder\Exception\FormBuilderException
- * @author 吴汐
- * @email 442384644@qq.com
- * @date 2024/1/22
- */
- public function divisionStaffCreate($uid)
- {
- return app('json')->success($this->services->getDivisionStaffForm((int)$uid));
- }
- /**
- * 保存员工
- * @return \think\Response
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 吴汐
- * @email 442384644@qq.com
- * @date 2024/1/22
- */
- public function divisionStaffSave()
- {
- $data = $this->request->getMore([
- ['uid', 0],
- ['division_percent', 0],
- ['agent_id', 0],
- ['image', []],
- ]);
- $this->services->divisionStaffSave($data);
- return app('json')->success(100000);
- }
- }
|