| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- <?php
- namespace app\admin\controller\qingdong\statistic;
- use addons\qingdong\model\Staff;
- use app\common\controller\Backend;
- use addons\qingdong\model\Contacts;
- use addons\qingdong\model\Contract;
- use addons\qingdong\model\Customer;
- use addons\qingdong\model\Field;
- use addons\qingdong\model\File;
- use addons\qingdong\model\Receivables;
- use addons\qingdong\model\Record;
- use addons\qingdong\model\Leads;
- use addons\qingdong\model\ExamineRecord;
- use think\Config;
- /**
- * 排行分析
- */
- class Ranking extends Backend
- {
- /**
- * 合同金额分析
- */
- public function index()
- {
- $row = input('row/a');
- if (isset($row['times']) && $row['times']) {
- $times = explode(' - ', $row['times']);
- } else {
- $times = [date('Y-01-01'), date('Y-m-d')];
- }
- if (isset($row['type']) && $row['type']) {
- $type = $row['type'];
- } else {
- $type = 0;
- }
- $staff = Staff::info();
- $between = [$times[0].' 00:00:00', $times[1].' 23:59:59'];
- if ($type == 1) {//本人
- $ids = [$staff->id];
- } elseif ($type == 2) {//下属
- $ids = Staff::getLowerStaffId();
- } else {//全部
- $ids = Staff::getMyStaffIds();
- }
- if (isset($row['staff_id']) && $row['staff_id']) {
- $ids = $staff_id = $row['staff_id'];
- } else {
- $staff_id = '';
- }
- $datalist = Contract::where([
- 'check_status' => 2,
- 'order_staff_id' => ['in', $ids],
- 'order_date' => ['between', $between]
- ])->field("order_staff_id,sum(`money`) as c")->group('order_staff_id')->select();
- $datainfo = $this->arraySortByOneField($datalist, 'c');
- $typedata = [];
- foreach ($datainfo as $k => $v) {
- $staff = Staff::where(array('id' => $v['order_staff_id']))->value('name');
- if($k<10) {
- $typedata['name'][] = $staff;
- $typedata['num'][] = $v['c'];
- }
- $datainfo[$k]['name'] = $staff;
- }
- $rank = $this->arraySortByOneField($datainfo, 'c', SORT_DESC);
- $this->view->assign([
- 'customerdata' => $typedata,
- 'dataInfo' => $rank,
- 'times' => implode(' - ', $times),
- 'type' => $type,
- 'staff_id' => $staff_id,
- ]);
- return $this->view->fetch();
- }
- /**
- * 回款金额分析
- */
- public function contract()
- {
- $row = input('row/a');
- if (isset($row['times']) && $row['times']) {
- $times = explode(' - ', $row['times']);
- } else {
- $times = [date('Y-01-01'), date('Y-m-d')];
- }
- if (isset($row['type']) && $row['type']) {
- $type = $row['type'];
- } else {
- $type = 0;
- }
- $staff = Staff::info();
- $between = [$times[0].' 00:00:00', $times[1].' 23:59:59'];
- if ($type == 1) {//本人
- $ids = [$staff->id];
- } elseif ($type == 2) {//下属
- $ids = Staff::getLowerStaffId();
- } else {//全部
- $ids = Staff::getMyStaffIds();
- }
- if (isset($row['staff_id']) && $row['staff_id']) {
- $ids = $staff_id = $row['staff_id'];
- } else {
- $staff_id = '';
- }
- $datalist = Receivables::where([
- 'check_status' => 2,
- 'owner_staff_id' => ['in', $ids],
- 'return_time' => ['between', $between]
- ])->field("owner_staff_id,sum(`money`) as c")->group('owner_staff_id')->select();
- $datainfo = $this->arraySortByOneField($datalist, 'c');
- $typedata = [];
- foreach ($datainfo as $k => $v) {
- $staff = Staff::where(array('id' => $v['owner_staff_id']))->value('name');
- $typedata['name'][] = $staff;
- $typedata['num'][] = $v['c'];
- $datainfo[$k]['name'] = $staff;
- }
- $rank = $this->arraySortByOneField($datainfo, 'c', SORT_DESC);
- $this->view->assign([
- 'customerdata' => $typedata,
- 'dataInfo' => $rank,
- 'times' => implode(' - ', $times),
- 'type' => $type,
- 'staff_id' => $staff_id,
- ]);
- return $this->view->fetch();
- }
- /**
- * 新增客户数分析
- */
- public function customer()
- {
- $row = input('row/a');
- if (isset($row['times']) && $row['times']) {
- $times = explode(' - ', $row['times']);
- } else {
- $times = [date('Y-01-01'), date('Y-m-d')];
- }
- if (isset($row['type']) && $row['type']) {
- $type = $row['type'];
- } else {
- $type = 0;
- }
- $staff = Staff::info();
- $between = [strtotime($times[0]), strtotime($times[1]) + 86400 - 1];
- if ($type == 1) {//本人
- $ids = [$staff->id];
- } elseif ($type == 2) {//下属
- $ids = Staff::getLowerStaffId();
- } else {//全部
- $ids = Staff::getMyStaffIds();
- }
- if (isset($row['staff_id']) && $row['staff_id']) {
- $ids = $staff_id = $row['staff_id'];
- } else {
- $staff_id = '';
- }
- $datalist = Customer::where(['owner_staff_id' => ['in', $ids], 'createtime' => ['between', $between]])
- ->field("owner_staff_id,count(*) as c")
- ->group('owner_staff_id')->select();
- $datainfo = $this->arraySortByOneField($datalist, 'c');
- $typedata = [];
- foreach ($datainfo as $k => $v) {
- $staff = Staff::where(array('id' => $v['owner_staff_id']))->value('name');
- $typedata['name'][] = $staff;
- $typedata['num'][] = $v['c'];
- $datainfo[$k]['name'] = $staff;
- }
- $rank = $this->arraySortByOneField($datainfo, 'c', SORT_DESC);
- $this->view->assign([
- 'customerdata' => $typedata,
- 'dataInfo' => $rank,
- 'times' => implode(' - ', $times),
- 'type' => $type,
- 'staff_id' => $staff_id,
- ]);
- return $this->view->fetch();
- }
- /**
- * 跟进次数分析
- */
- public function record()
- {
- $row = input('row/a');
- if (isset($row['times']) && $row['times']) {
- $times = explode(' - ', $row['times']);
- } else {
- $times = [date('Y-01-01'), date('Y-m-d')];
- }
- if (isset($row['type']) && $row['type']) {
- $type = $row['type'];
- } else {
- $type = 0;
- }
- $staff = Staff::info();
- $between = [strtotime($times[0]), strtotime($times[1]) + 86400 - 1];
- if ($type == 1) {//本人
- $ids = [$staff->id];
- } elseif ($type == 2) {//下属
- $ids = Staff::getLowerStaffId();
- } else {//全部
- $ids = Staff::getMyStaffIds();
- }
- if (isset($row['staff_id']) && $row['staff_id']) {
- $ids = $staff_id = $row['staff_id'];
- } else {
- $staff_id = '';
- }
- $datalist = Record::where(['create_staff_id' => ['in', $ids], 'createtime' => ['between', $between],'follow_type'=>['neq','其它']])
- ->field("create_staff_id,count(*) as c")
- ->group('create_staff_id')->select();
- $datainfo = $this->arraySortByOneField($datalist, 'c');
- $typedata = [];
- foreach ($datainfo as $k => $v) {
- $staff = Staff::where(array('id' => $v['create_staff_id']))->value('name');
- $typedata['name'][] = $staff;
- $typedata['num'][] = $v['c'];
- $datainfo[$k]['name'] = $staff;
- }
- $rank = $this->arraySortByOneField($datainfo, 'c', SORT_DESC);
- $this->view->assign([
- 'customerdata' => $typedata,
- 'dataInfo' => $rank,
- 'times' => implode(' - ', $times),
- 'type' => $type,
- 'staff_id' => $staff_id,
- ]);
- return $this->view->fetch();
- }
- /**
- * 排序
- * @param $data
- * @param $field
- * @param int $sort
- * @return mixed
- */
- public function arraySortByOneField($data, $field, $sort = SORT_ASC)
- {
- $field = array_column($data, $field);
- array_multisort($field, $sort, $data);
- return $data;
- }
- }
|