Ranking.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\RankingModel;
  4. use app\admin\model\UserModel;
  5. use think\Db;
  6. /**
  7. * Class Ranking
  8. * @package app\admin\controller
  9. * 排行榜
  10. */
  11. class Ranking extends Base
  12. {
  13. /**
  14. * 月度新建客户排名
  15. */
  16. public function new_customer()
  17. {
  18. if (request()->isAjax()) {
  19. extract(input());
  20. $map = [];
  21. $whereTime = [];
  22. if (isset($start) && $start != "" && isset($end) && $end != "") {
  23. $whereTime = [strtotime($start), strtotime($end)];
  24. } else {
  25. $ymd = date('Y-m',time());
  26. $time = strtotime($ymd);
  27. $whereTime = [$time, time()];
  28. }
  29. $Nowpage = input('page') ? input('page') : 1;
  30. $limits = input("limit") ? input("limit") : 10;// 获取总条数;
  31. $field = input('field'); //字段
  32. $order = input('order'); //排序方式
  33. if ($field && $order) {
  34. $od = "a." . $field . " " . $order;
  35. } else {
  36. $od = "a.create_time desc";
  37. }
  38. $user = new UserModel();
  39. $count = $user->getUserCount($map);
  40. $lists = $user->getURankingByWhere($map, $od, $Nowpage, $limits,0,$whereTime);
  41. if ($lists) {
  42. foreach ($lists as $k=>$v) {
  43. $id[$k] = $lists[$k]['id'];
  44. }
  45. $ids = implode(',',$id); // 把有客户的业务员id拼接成字符串
  46. } else {
  47. $ids = 0;
  48. }
  49. $other_admin = Db::name('admin')->where('id','not in',$ids)->where('groupid',4)->field('nickname')->select();
  50. foreach ($other_admin as &$v) {
  51. $v['num'] = 0;
  52. }
  53. $data = array_merge($lists,$other_admin);
  54. return json(['code' => 220, 'msg' => '', 'count' => $count, 'data' => $data]);
  55. }
  56. return $this->fetch();
  57. }
  58. /**
  59. * 月度有效回复客户
  60. */
  61. public function reply_customer()
  62. {
  63. if (request()->isAjax()) {
  64. extract(input());
  65. $map = [];
  66. $whereTime = [];
  67. if (isset($start) && $start != "" && isset($end) && $end != "") {
  68. $whereTime = [strtotime($start), strtotime($end)];
  69. } else {
  70. $ymd = date('Y-m',time());
  71. $time = strtotime($ymd);
  72. $whereTime = [$time, time()];
  73. }
  74. $Nowpage = input('page') ? input('page') : 1;
  75. $limits = input("limit") ? input("limit") : 10;// 获取总条数;
  76. $field = input('field'); //字段
  77. $order = input('order'); //排序方式
  78. if ($field && $order) {
  79. $od = "a." . $field . " " . $order;
  80. } else {
  81. $od = "a.create_time desc";
  82. }
  83. $user = new UserModel();
  84. $count = $user->getUserCount($map);
  85. $lists = $user->getURankingByWhere($map, $od, $Nowpage, $limits,1,$whereTime);
  86. if ($lists) {
  87. foreach ($lists as $k=>$v) {
  88. $id[$k] = $lists[$k]['id'];
  89. }
  90. $ids = implode(',',$id); // 把有客户的业务员id拼接成字符串
  91. } else {
  92. $ids = 0;
  93. }
  94. $other_admin = Db::name('admin')->where('id','not in',$ids)->where('groupid',4)->field('nickname')->select();
  95. foreach ($other_admin as &$v) {
  96. $v['num'] = 0;
  97. }
  98. $data = array_merge($lists,$other_admin);
  99. return json(['code' => 220, 'msg' => '', 'count' => $count, 'data' => $data]);
  100. }
  101. return $this->fetch('reply_customer');
  102. }
  103. /**
  104. * 月度成交客户排行榜
  105. */
  106. public function yes_customer()
  107. {
  108. if (request()->isAjax()) {
  109. extract(input());
  110. $map = [];
  111. $whereTime = [];
  112. if (isset($start) && $start != "" && isset($end) && $end != "") {
  113. $whereTime = [strtotime($start), strtotime($end)];
  114. } else {
  115. $ymd = date('Y-m',time());
  116. $time = strtotime($ymd);
  117. $whereTime = [$time, time()];
  118. }
  119. $Nowpage = input('page') ? input('page') : 1;
  120. $limits = input("limit") ? input("limit") : 10;// 获取总条数;
  121. $field = input('field'); //字段
  122. $order = input('order'); //排序方式
  123. if ($field && $order) {
  124. $od = "a." . $field . " " . $order;
  125. } else {
  126. $od = "a.create_time desc";
  127. }
  128. $user = new UserModel();
  129. $count = $user->getUserCount($map);
  130. $lists = $user->getURankingByWhere($map, $od, $Nowpage, $limits,2,$whereTime);
  131. if ($lists) {
  132. foreach ($lists as $k=>$v) {
  133. $id[$k] = $lists[$k]['id'];
  134. }
  135. $ids = implode(',',$id); // 把有客户的业务员id拼接成字符串
  136. } else {
  137. $ids = 0;
  138. }
  139. $other_admin = Db::name('admin')->where('id','not in',$ids)->where('groupid',4)->field('nickname')->select();
  140. foreach ($other_admin as &$v) {
  141. $v['num'] = 0;
  142. }
  143. $data = array_merge($lists,$other_admin);
  144. return json(['code' => 220, 'msg' => '', 'count' => $count, 'data' => $data]);
  145. }
  146. return $this->fetch();
  147. }
  148. }