UserModel.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. use think\Db;
  5. class UserModel extends Model
  6. {
  7. protected $name = 'admin';
  8. protected $autoWriteTimestamp = true; // 开启自动写入时间戳
  9. /**
  10. * 根据搜索条件获取用户列表信息
  11. */
  12. public function getUsersByWhere($map,$od, $Nowpage, $limits)
  13. {
  14. return $this->alias ('a')
  15. ->join('auth_group ag', 'a.groupid = ag.id','left')
  16. ->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')
  17. ->where($map)
  18. ->where('ag.id','neq',1)
  19. ->where('ag.id','neq',3)
  20. ->page($Nowpage, $limits)
  21. ->order($od)
  22. ->select();
  23. }
  24. /*
  25. * 总页面数
  26. */
  27. public function getUserCount($map){
  28. return $this->alias('a')
  29. ->join('auth_group ag', 'a.groupid = ag.id','left')
  30. ->where($map)
  31. ->where('a.groupid',4)
  32. ->count();
  33. }
  34. /**
  35. * 根据搜索条件获取用户列表信息
  36. */
  37. public function getURankingByWhere($map,$od, $Nowpage, $limits,$type,$whereTime)
  38. {
  39. return $this->alias ('a')
  40. ->join('ranking r','a.id=r.admin_id','LEFT')
  41. ->where($map)
  42. ->where('r.type',$type)
  43. ->where('a.groupid',4)
  44. ->where('r.status',1)
  45. ->where('r.create_time','between',$whereTime)
  46. ->field('a.id id,a.nickname,count(r.admin_id) as num')
  47. ->group('a.id')
  48. ->order('num desc')
  49. ->page($Nowpage, $limits)
  50. ->select()
  51. ->toArray();
  52. }
  53. /**
  54. * 新建客户月度排名
  55. */
  56. public function customer_new_customer($date,$type)
  57. {
  58. $time = strtotime($date);
  59. $endtime_num = date("Y-m-t",$time);
  60. $endtime = strtotime($endtime_num);
  61. $times = [$time,$endtime];
  62. $data = $this->alias ('a')
  63. ->join('ranking r','a.id=r.admin_id','LEFT')
  64. ->where('r.type',$type)
  65. ->where('a.groupid',4)
  66. ->where('r.status',1)
  67. ->where('r.create_time','between',$times)
  68. ->field('a.id id,a.nickname,count(r.admin_id) as num')
  69. ->group('a.id')
  70. ->order('num desc')
  71. ->page(0, 10)
  72. ->select()
  73. ->toArray();
  74. if ($data) {
  75. foreach ($data as $k=>$v) {
  76. $id[$k] = $data[$k]['id'];
  77. }
  78. $ids = implode(',',$id); // 把有客户的业务员id拼接成字符串
  79. } else {
  80. $ids = 0;
  81. }
  82. $other_admin = Db::name('admin')->where('id','not in',$ids)->where('groupid',4)->field('nickname')->select();
  83. foreach ($other_admin as &$v) {
  84. $v['num'] = 0;
  85. }
  86. $data = array_merge($data,$other_admin);
  87. $output = array_slice($data, 0, 10);
  88. return $output;
  89. }
  90. /**
  91. * 新建客户月度排名
  92. */
  93. public function customer_new_customer_num($date,$type)
  94. {
  95. $time = strtotime($date);
  96. $endtime_num = date("Y-m-t",$time);
  97. $endtime = strtotime($endtime_num);
  98. $times = [$time,$endtime];
  99. // $data = $this->alias ('a')
  100. // ->join('ranking r','a.id=r.admin_id','LEFT')
  101. // ->where('r.type',$type)
  102. // ->where('r.admin_id',session('uid'))
  103. // ->where('a.groupid',4)
  104. // ->where('r.status',1)
  105. // ->where('r.create_time','between',$times)
  106. // ->field('a.id id,a.nickname,count(r.admin_id) as num')
  107. // ->group('a.id')
  108. // ->order('num desc')
  109. // ->page(0, 10)
  110. // ->count();
  111. $num = Db::name('ranking')
  112. ->where('type',$type)
  113. ->where('admin_id',session('uid'))
  114. ->where('status',1)
  115. ->where('create_time','between',$times)
  116. ->count();
  117. return $num;
  118. }
  119. /**
  120. * 年度新建客户排名
  121. */
  122. public function customer_month_num($date)
  123. {
  124. $time = strtotime($date);
  125. $endtime_num = date("Y-m-t",$time);
  126. $endtime = strtotime($endtime_num);
  127. $times = [$time,$endtime];
  128. $num = Db::name('ranking')
  129. ->where('type',0)
  130. ->where('admin_id',session('uid'))
  131. ->where('status',1)
  132. ->where('create_time','between',$times)
  133. ->count();
  134. return $num;
  135. }
  136. /**
  137. * 客户数据统计
  138. *
  139. */
  140. public function customer_num()
  141. {
  142. //总客户数
  143. $num['zong'] = Db::name('ranking')->where('admin_id',session('uid'))->where('status',1)->count();
  144. //新建客户数
  145. $num['new_num'] = Db::name('ranking')->where('admin_id',session('uid'))->where('type',0)->where('status',1)->count();
  146. // 有效回复
  147. $num['reply_num'] = Db::name('ranking')->where('admin_id',session('uid'))->where('type',1)->where('status',1)->count();
  148. // 已成交
  149. $num['yes_num'] = Db::name('ranking')->where('admin_id',session('uid'))->where('type',2)->where('status',1)->count();
  150. // 已关联
  151. $num['guanlian_num'] = Db::name('customer')->where('spread_id',session('uid'))->where('status',3)->count();
  152. $num['lingzou_count'] = Db::name('admin')->where('id',session('uid'))->value('lingzou_count');
  153. return $num;
  154. }
  155. /**
  156. * 根据搜索条件获取所有的用户数量
  157. * @param $where
  158. */
  159. public function getAllUsers($where)
  160. {
  161. return $this->where($where)->count();
  162. }
  163. /**
  164. * 插入管理员信息
  165. * @param $param
  166. */
  167. public function insertUser($param)
  168. {
  169. Db::startTrans();// 启动事务
  170. try{
  171. $this->allowField(true)->save($param);
  172. Db::name('auth_group_access')->insert(['uid'=> $this->id,'group_id'=> $param['groupid']]);
  173. Db::commit();// 提交事务
  174. // writelog('管理员【'.$param['username'].'】添加成功',200);
  175. return ['code' => 200, 'data' =>"", 'msg' => '添加管理员成功'];
  176. }catch( \Exception $e){
  177. Db::rollback ();//回滚事务
  178. // writelog('管理员【'.$param['username'].'】添加失败',100);
  179. return ['code' => 100, 'data' => '', 'msg' => '添加管理员失败'];
  180. }
  181. }
  182. /**
  183. * 编辑管理员信息
  184. * @param $param
  185. */
  186. public function editUser($param)
  187. {
  188. Db::startTrans();// 启动事务
  189. try{
  190. $this->allowField(true)->save($param, ['id' => $param['id']]);
  191. // if($param['id'] != 1){
  192. // Db::name('auth_group_access')->where('uid',$param['id'])->setField ('group_id',$param['groupid']);
  193. // }
  194. Db::commit();// 提交事务
  195. // writelog('管理员【'.$param['username'].'】编辑成功',200);
  196. $status = '';
  197. if($param['id']==session('uid')){
  198. session('portrait', $param['portrait']); //用户头像
  199. if(isset($param['password']) && $param['password'] != ""){
  200. $status = 100;
  201. }
  202. }
  203. return ['code' => 200, 'data' => $status, 'msg' => '编辑用户成功'];
  204. }catch( \Exception $e){
  205. Db::rollback ();//回滚事务
  206. // writelog('管理员【'.$param['username'].'】编辑失败',100);
  207. return ['code' => 100, 'data' => '', 'msg' =>'编辑用户失败'];
  208. }
  209. }
  210. /**
  211. * 修改密码
  212. * @param $param
  213. */
  214. public function editUsers($param)
  215. {
  216. $upd = $this->where('id',$param['id'])->update(['pwd' => $param['pwd'],'password' =>$param['password']]);
  217. if($upd){
  218. // writelog($param['username'].'编辑密码成功',200);
  219. return ['code' => 200, 'data' => '', 'msg' =>'修改成功'];
  220. }else{
  221. // writelog($param['username'].'编辑密码失败',100);
  222. return ['code' => 100, 'data' => '', 'msg' =>'修改失败'];
  223. }
  224. }
  225. /**
  226. * 验证原始密码
  227. * @param $param
  228. */
  229. public function checkOldPassword($oldpassword,$id){
  230. $password = $this->where("id",$id)->value("password");
  231. if($password === $oldpassword){
  232. return ['code' => 200, 'data' => '', 'msg' =>'true'];
  233. }else{
  234. return ['code' => 100, 'data' => '', 'msg' =>'false'];
  235. }
  236. }
  237. /**
  238. * checkName 验证管理员名称唯一性
  239. * @param $username
  240. * @return string
  241. */
  242. public function checkName($username,$uid){
  243. if($uid != ''){
  244. $uname = $this->where('id',$uid)->value('username');
  245. if($uname == $username){
  246. return ['code' => 200, 'msg' => 'true'];
  247. }
  248. }
  249. $result = $this->where('username',$username)->find();
  250. if($result){
  251. return ['code' => 100, 'msg' => 'false'];
  252. }else{
  253. return ['code' => 200, 'msg' => 'true'];
  254. }
  255. }
  256. /**
  257. * 根据管理员id获取角色信息
  258. * @param $id
  259. */
  260. public function getOneUser($id)
  261. {
  262. return $this->where('id', $id)->find();
  263. }
  264. /**
  265. * 删除管理员
  266. * @param $id
  267. */
  268. public function delUser($id)
  269. {
  270. $name = $this->where('id', $id)->value('username');
  271. Db::startTrans();// 启动事务
  272. try{
  273. $this->where('id', $id)->delete();
  274. Db::name('auth_group_access')->where('uid', $id)->delete();
  275. Db::commit();// 提交事务
  276. // writelog('管理员【'.$name.'】删除成功(ID='.$id.')',200);
  277. return ['code' => 200, 'data' => '', 'msg' => '删除用户成功'];
  278. }catch( \Exception $e){
  279. Db::rollback ();//回滚事务
  280. // writelog('管理员【'.$name.'】删除失败(ID='.$id.')',100);
  281. return ['code' => 100, 'data' => '', 'msg' => '删除用户失败'];
  282. }
  283. }
  284. /**
  285. * editPassword 修改管理员密码
  286. * @param $param
  287. * @return array
  288. */
  289. public function editPassword($param){
  290. $name = $this->where('id',session('uid'))->value('username');
  291. Db::startTrans();// 启动事务
  292. try{
  293. $this->allowField (true)->save($param,['id'=>session('uid')]);
  294. Db::commit();// 提交事务
  295. // writelog('管理员【'.$name.'】修改密码成功',200);
  296. return ['code'=>200,'msg'=>'密码修改成功,请重新登录!'];
  297. }catch( \Exception $e){
  298. Db::rollback ();//回滚事务
  299. // writelog('管理员【'.$name.'】修改密码失败',100);
  300. return ['code'=>100,'msg'=>'密码修改失败'];
  301. }
  302. }
  303. /**
  304. * batchDelUser 批量删除管理员
  305. * @param $param
  306. * @return array
  307. */
  308. public function batchDelUser($param){
  309. Db::startTrans();// 启动事务
  310. try{
  311. UserModel::destroy($param);
  312. for($i=0;$i<count($param);$i++){
  313. Db::name('auth_group_access')->where('uid','in',$param)->delete();
  314. }
  315. Db::commit();// 提交事务
  316. // writelog('批量删除管理员成功',200);
  317. return ['code' => 200, 'data' => '', 'msg' => '批量删除成功'];
  318. }catch( \Exception $e){
  319. Db::rollback ();//回滚事务
  320. // writelog('批量删除管理员失败',100);
  321. return ['code' => 100, 'data' => '', 'msg' => '批量删除失败'];
  322. }
  323. }
  324. /**
  325. * forbiddenAdmin 批量禁用管理员
  326. * @param $param
  327. * @return array
  328. */
  329. public function forbiddenAdmin($param){
  330. Db::startTrans();// 启动事务
  331. try{
  332. if($param){
  333. $this->saveAll($param);
  334. }else{
  335. $this->where('id','not in',[1,session('uid')])->update(['status'=>2]);
  336. }
  337. Db::commit();// 提交事务
  338. // writelog('批量禁用管理员成功',200);
  339. return ['code' => 200, 'data' => '', 'msg' => '批量禁用成功'];
  340. }catch( \Exception $e){
  341. Db::rollback ();//回滚事务
  342. // writelog('批量禁用管理员失败',100);
  343. return ['code' => 100, 'data' => '', 'msg' => '批量禁用失败'];
  344. }
  345. }
  346. /**
  347. * usingAdmin 批量启用管理员
  348. * @param $param
  349. * @return array
  350. */
  351. public function usingAdmin($param){
  352. Db::startTrans();// 启动事务
  353. try{
  354. if($param){
  355. $this->saveAll($param);
  356. }else{
  357. $this->where('1=1')->update(['status'=>1]);
  358. }
  359. Db::commit();// 提交事务
  360. // writelog('批量启用管理员成功',200);
  361. return ['code' => 200, 'data' => '', 'msg' => '批量启用成功'];
  362. }catch( \Exception $e){
  363. Db::rollback ();//回滚事务
  364. // writelog('批量启用管理员失败',100);
  365. return ['code' => 100, 'data' => '', 'msg' => '批量启用失败'];
  366. }
  367. }
  368. /**
  369. * [userState 用户状态]
  370. * @param $id
  371. * @return array
  372. */
  373. public function userState($id,$num){
  374. $username = $this->where('id',$id)->value('username');
  375. if($num == 2){
  376. $msg = '禁用';
  377. }else{
  378. $msg = '启用';
  379. }
  380. Db::startTrans();// 启动事务
  381. try{
  382. if($id == session('uid')){
  383. return ['code'=>100,'data' => '','msg'=>'不可禁用自己','type'=>'no'];
  384. }else {
  385. $this->where ('id' , $id)->setField (['status' => $num]);
  386. Db::commit();// 提交事务
  387. // writelog('管理员【'.$username.'】'.$msg.'成功',200);
  388. // return ['code' => 200, 'data' => '', 'msg' => '已'.$msg];
  389. }
  390. }catch( \Exception $e){
  391. Db::rollback ();//回滚事务
  392. // writelog('管理员【'.$username.'】'.$msg.'失败',100);
  393. return ['code' => 100, 'data' => '', 'msg' => $msg.'失败'];
  394. }
  395. }
  396. }