123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- <?php
- namespace app\admin\model;
- use think\Model;
- use think\Db;
- class UserModel extends Model
- {
- protected $name = 'admin';
- protected $autoWriteTimestamp = true; // 开启自动写入时间戳
- /**
- * 根据搜索条件获取用户列表信息
- */
- public function getUsersByWhere($map,$od, $Nowpage, $limits)
- {
- return $this->alias ('a')
- ->join('auth_group ag', 'a.groupid = ag.id','left')
- ->field('a.levelid,a.email,a.nickname,a.pwd,a.id,a.username,a.password,a.portrait,a.loginnum,a.last_login_ip,a.last_login_time,a.real_name,a.status,a.phone,a.groupid,a.create_time,a.update_time,ag.title')
- ->where($map)
- ->where('ag.id','neq',1)
- ->where('ag.id','neq',3)
- ->page($Nowpage, $limits)
- ->order($od)
- ->select();
- }
- /*
- * 总页面数
- */
- public function getUserCount($map){
- return $this->alias('a')
- ->join('auth_group ag', 'a.groupid = ag.id','left')
- ->where($map)
- ->where('a.groupid',4)
- ->count();
- }
- /**
- * 根据搜索条件获取用户列表信息
- */
- public function getURankingByWhere($map,$od, $Nowpage, $limits,$type,$whereTime)
- {
- return $this->alias ('a')
- ->join('ranking r','a.id=r.admin_id','LEFT')
- ->where($map)
- ->where('r.type',$type)
- ->where('a.groupid',4)
- ->where('r.status',1)
- ->where('r.create_time','between',$whereTime)
- ->field('a.id id,a.nickname,count(r.admin_id) as num')
- ->group('a.id')
- ->order('num desc')
- ->page($Nowpage, $limits)
- ->select()
- ->toArray();
- }
- /**
- * 新建客户月度排名
- */
- public function customer_new_customer($date,$type)
- {
- $time = strtotime($date);
- $endtime_num = date("Y-m-t",$time);
- $endtime = strtotime($endtime_num);
- $times = [$time,$endtime];
- $data = $this->alias ('a')
- ->join('ranking r','a.id=r.admin_id','LEFT')
- ->where('r.type',$type)
- ->where('a.groupid',4)
- ->where('r.status',1)
- ->where('r.create_time','between',$times)
- ->field('a.id id,a.nickname,count(r.admin_id) as num')
- ->group('a.id')
- ->order('num desc')
- ->page(0, 10)
- ->select()
- ->toArray();
- if ($data) {
- foreach ($data as $k=>$v) {
- $id[$k] = $data[$k]['id'];
- }
- $ids = implode(',',$id); // 把有客户的业务员id拼接成字符串
- } else {
- $ids = 0;
- }
- $other_admin = Db::name('admin')->where('id','not in',$ids)->where('groupid',4)->field('nickname')->select();
- foreach ($other_admin as &$v) {
- $v['num'] = 0;
- }
- $data = array_merge($data,$other_admin);
- $output = array_slice($data, 0, 10);
- return $output;
- }
- /**
- * 新建客户月度排名
- */
- public function customer_new_customer_num($date,$type)
- {
- $time = strtotime($date);
- $endtime_num = date("Y-m-t",$time);
- $endtime = strtotime($endtime_num);
- $times = [$time,$endtime];
- // $data = $this->alias ('a')
- // ->join('ranking r','a.id=r.admin_id','LEFT')
- // ->where('r.type',$type)
- // ->where('r.admin_id',session('uid'))
- // ->where('a.groupid',4)
- // ->where('r.status',1)
- // ->where('r.create_time','between',$times)
- // ->field('a.id id,a.nickname,count(r.admin_id) as num')
- // ->group('a.id')
- // ->order('num desc')
- // ->page(0, 10)
- // ->count();
- $num = Db::name('ranking')
- ->where('type',$type)
- ->where('admin_id',session('uid'))
- ->where('status',1)
- ->where('create_time','between',$times)
- ->count();
- return $num;
- }
- /**
- * 年度新建客户排名
- */
- public function customer_month_num($date)
- {
- $time = strtotime($date);
- $endtime_num = date("Y-m-t",$time);
- $endtime = strtotime($endtime_num);
- $times = [$time,$endtime];
- $num = Db::name('ranking')
- ->where('type',0)
- ->where('admin_id',session('uid'))
- ->where('status',1)
- ->where('create_time','between',$times)
- ->count();
- return $num;
- }
- /**
- * 客户数据统计
- *
- */
- public function customer_num()
- {
- //总客户数
- $num['zong'] = Db::name('ranking')->where('admin_id',session('uid'))->where('status',1)->count();
- //新建客户数
- $num['new_num'] = Db::name('ranking')->where('admin_id',session('uid'))->where('type',0)->where('status',1)->count();
- // 有效回复
- $num['reply_num'] = Db::name('ranking')->where('admin_id',session('uid'))->where('type',1)->where('status',1)->count();
- // 已成交
- $num['yes_num'] = Db::name('ranking')->where('admin_id',session('uid'))->where('type',2)->where('status',1)->count();
- // 已关联
- $num['guanlian_num'] = Db::name('customer')->where('spread_id',session('uid'))->where('status',3)->count();
- $num['lingzou_count'] = Db::name('admin')->where('id',session('uid'))->value('lingzou_count');
- return $num;
- }
- /**
- * 根据搜索条件获取所有的用户数量
- * @param $where
- */
- public function getAllUsers($where)
- {
- return $this->where($where)->count();
- }
- /**
- * 插入管理员信息
- * @param $param
- */
- public function insertUser($param)
- {
- Db::startTrans();// 启动事务
- try{
- $this->allowField(true)->save($param);
- Db::name('auth_group_access')->insert(['uid'=> $this->id,'group_id'=> $param['groupid']]);
- Db::commit();// 提交事务
- // writelog('管理员【'.$param['username'].'】添加成功',200);
- return ['code' => 200, 'data' =>"", 'msg' => '添加管理员成功'];
- }catch( \Exception $e){
- Db::rollback ();//回滚事务
- // writelog('管理员【'.$param['username'].'】添加失败',100);
- return ['code' => 100, 'data' => '', 'msg' => '添加管理员失败'];
- }
- }
- /**
- * 编辑管理员信息
- * @param $param
- */
- public function editUser($param)
- {
- Db::startTrans();// 启动事务
- try{
- $this->allowField(true)->save($param, ['id' => $param['id']]);
- // if($param['id'] != 1){
- // Db::name('auth_group_access')->where('uid',$param['id'])->setField ('group_id',$param['groupid']);
- // }
- Db::commit();// 提交事务
- // writelog('管理员【'.$param['username'].'】编辑成功',200);
- $status = '';
- if($param['id']==session('uid')){
- session('portrait', $param['portrait']); //用户头像
- if(isset($param['password']) && $param['password'] != ""){
- $status = 100;
- }
- }
- return ['code' => 200, 'data' => $status, 'msg' => '编辑用户成功'];
- }catch( \Exception $e){
- Db::rollback ();//回滚事务
- // writelog('管理员【'.$param['username'].'】编辑失败',100);
- return ['code' => 100, 'data' => '', 'msg' =>'编辑用户失败'];
- }
- }
- /**
- * 修改密码
- * @param $param
- */
- public function editUsers($param)
- {
- $upd = $this->where('id',$param['id'])->update(['pwd' => $param['pwd'],'password' =>$param['password']]);
- if($upd){
- // writelog($param['username'].'编辑密码成功',200);
- return ['code' => 200, 'data' => '', 'msg' =>'修改成功'];
- }else{
- // writelog($param['username'].'编辑密码失败',100);
- return ['code' => 100, 'data' => '', 'msg' =>'修改失败'];
- }
- }
- /**
- * 验证原始密码
- * @param $param
- */
- public function checkOldPassword($oldpassword,$id){
- $password = $this->where("id",$id)->value("password");
- if($password === $oldpassword){
- return ['code' => 200, 'data' => '', 'msg' =>'true'];
- }else{
- return ['code' => 100, 'data' => '', 'msg' =>'false'];
- }
- }
- /**
- * checkName 验证管理员名称唯一性
- * @param $username
- * @return string
- */
- public function checkName($username,$uid){
- if($uid != ''){
- $uname = $this->where('id',$uid)->value('username');
- if($uname == $username){
- return ['code' => 200, 'msg' => 'true'];
- }
- }
- $result = $this->where('username',$username)->find();
- if($result){
- return ['code' => 100, 'msg' => 'false'];
- }else{
- return ['code' => 200, 'msg' => 'true'];
- }
- }
- /**
- * 根据管理员id获取角色信息
- * @param $id
- */
- public function getOneUser($id)
- {
- return $this->where('id', $id)->find();
- }
- /**
- * 删除管理员
- * @param $id
- */
- public function delUser($id)
- {
- $name = $this->where('id', $id)->value('username');
- Db::startTrans();// 启动事务
- try{
- $this->where('id', $id)->delete();
- Db::name('auth_group_access')->where('uid', $id)->delete();
- Db::commit();// 提交事务
- // writelog('管理员【'.$name.'】删除成功(ID='.$id.')',200);
- return ['code' => 200, 'data' => '', 'msg' => '删除用户成功'];
- }catch( \Exception $e){
- Db::rollback ();//回滚事务
- // writelog('管理员【'.$name.'】删除失败(ID='.$id.')',100);
- return ['code' => 100, 'data' => '', 'msg' => '删除用户失败'];
- }
- }
- /**
- * editPassword 修改管理员密码
- * @param $param
- * @return array
- */
- public function editPassword($param){
- $name = $this->where('id',session('uid'))->value('username');
- Db::startTrans();// 启动事务
- try{
- $this->allowField (true)->save($param,['id'=>session('uid')]);
- Db::commit();// 提交事务
- // writelog('管理员【'.$name.'】修改密码成功',200);
- return ['code'=>200,'msg'=>'密码修改成功,请重新登录!'];
- }catch( \Exception $e){
- Db::rollback ();//回滚事务
- // writelog('管理员【'.$name.'】修改密码失败',100);
- return ['code'=>100,'msg'=>'密码修改失败'];
- }
- }
- /**
- * batchDelUser 批量删除管理员
- * @param $param
- * @return array
- */
- public function batchDelUser($param){
- Db::startTrans();// 启动事务
- try{
- UserModel::destroy($param);
- for($i=0;$i<count($param);$i++){
- Db::name('auth_group_access')->where('uid','in',$param)->delete();
- }
- Db::commit();// 提交事务
- // writelog('批量删除管理员成功',200);
- return ['code' => 200, 'data' => '', 'msg' => '批量删除成功'];
- }catch( \Exception $e){
- Db::rollback ();//回滚事务
- // writelog('批量删除管理员失败',100);
- return ['code' => 100, 'data' => '', 'msg' => '批量删除失败'];
- }
- }
- /**
- * forbiddenAdmin 批量禁用管理员
- * @param $param
- * @return array
- */
- public function forbiddenAdmin($param){
- Db::startTrans();// 启动事务
- try{
- if($param){
- $this->saveAll($param);
- }else{
- $this->where('id','not in',[1,session('uid')])->update(['status'=>2]);
- }
- Db::commit();// 提交事务
- // writelog('批量禁用管理员成功',200);
- return ['code' => 200, 'data' => '', 'msg' => '批量禁用成功'];
- }catch( \Exception $e){
- Db::rollback ();//回滚事务
- // writelog('批量禁用管理员失败',100);
- return ['code' => 100, 'data' => '', 'msg' => '批量禁用失败'];
- }
- }
- /**
- * usingAdmin 批量启用管理员
- * @param $param
- * @return array
- */
- public function usingAdmin($param){
- Db::startTrans();// 启动事务
- try{
- if($param){
- $this->saveAll($param);
- }else{
- $this->where('1=1')->update(['status'=>1]);
- }
- Db::commit();// 提交事务
- // writelog('批量启用管理员成功',200);
- return ['code' => 200, 'data' => '', 'msg' => '批量启用成功'];
- }catch( \Exception $e){
- Db::rollback ();//回滚事务
- // writelog('批量启用管理员失败',100);
- return ['code' => 100, 'data' => '', 'msg' => '批量启用失败'];
- }
- }
- /**
- * [userState 用户状态]
- * @param $id
- * @return array
- */
- public function userState($id,$num){
- $username = $this->where('id',$id)->value('username');
- if($num == 2){
- $msg = '禁用';
- }else{
- $msg = '启用';
- }
- Db::startTrans();// 启动事务
- try{
- if($id == session('uid')){
- return ['code'=>100,'data' => '','msg'=>'不可禁用自己','type'=>'no'];
- }else {
- $this->where ('id' , $id)->setField (['status' => $num]);
- Db::commit();// 提交事务
- // writelog('管理员【'.$username.'】'.$msg.'成功',200);
- // return ['code' => 200, 'data' => '', 'msg' => '已'.$msg];
- }
- }catch( \Exception $e){
- Db::rollback ();//回滚事务
- // writelog('管理员【'.$username.'】'.$msg.'失败',100);
- return ['code' => 100, 'data' => '', 'msg' => $msg.'失败'];
- }
- }
- }
|