123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- 'use strict';
- app.controller('service_formCtrl', ["$scope", "$rootScope", "$state", "$timeout", "$interval", "$http", "$cookieStore", "SweetAlert", "Restangular", "api_report", "api_statistic", "moment", 'api_user_data','api_event_form', function ($scope, $rootScope, $state, $timeout, $interval, $http, $cookieStore, SweetAlert, Restangular, api_report, api_statistic, moment, api_user_data, api_event_form) {
- //默认显示综合统计
- $scope.tap = 'ZHTJ';
- //默认显示上一周
- $scope.searchstate = 'none';
- //日期选择
- $scope.nowtimes = moment().format('YYYY-MM-DD')//当前日期;
- //上周
- $scope.week = function () {
- $scope.searchstate = "week";
- var weeks = new Date().getDay();
- $scope.starttimesModel = moment(new Date().getTime() - 86400000 * (weeks + 6)).format('YYYY-MM-DD');
- $scope.endtimesModel = moment(new Date().getTime() - 86400000 * (weeks)).format('YYYY-MM-DD');
- }
- //上月
- $scope.month = function () {
- $scope.searchstate = "month";
- $scope.starttimesModel = moment().startOf('month').add(-1, 'M').format('YYYY-MM-DD');
- $scope.endtimesModel = moment().endOf('month').add(-1, 'M').format('YYYY-MM-DD');
- }
- //去年
- $scope.year = function () {
- $scope.searchstate = "year";
- $scope.starttimesModel = moment().startOf('year').add(-1, 'y').format('YYYY-MM-DD');
- $scope.endtimesModel = moment().endOf('year').add(-1, 'y').format('YYYY-MM-DD');
- }
- //近N日
- $scope.day = function (num) {
- num = num > 1 ? num : 1;
- $scope.searchstate = "none";
- $scope.starttimesModel = moment().subtract(num, "days").format("YYYY-MM-DD");
- $scope.endtimesModel = moment().subtract(1, "days").format("YYYY-MM-DD");
- }
- //默认显示最近7天
- $scope.day(7);
- //选择上一周,上个月,去年
- $scope.chooseDate = function (date) {
- switch (date) {
- case 'week':
- $scope.week();
- break;
- case 'month':
- $scope.month();
- break;
- case 'year':
- $scope.year();
- break;
- }
- };
- /**
- *日历
- */
- //打开开始日期选择框
- $scope.startOpen = function ($event) {
- $event.preventDefault();
- $event.stopPropagation();
- $scope.endOpened = false;
- $scope.startOpened = !$scope.startOpened;
- };
- //打开结束日期选择框
- $scope.endOpen = function ($event) {
- $event.preventDefault();
- $event.stopPropagation();
- $scope.startOpened = false;
- $scope.endOpened = !$scope.endOpened;
- };
- //重置
- $scope.reload = function(){
- $scope.day(7);
- $scope.searchstate = 'none';
- $scope.sortActive = 'totaltop';
- $scope.name = 'total';//表格排序,字段名称
- $scope.type = 'desc';//表格排序,排序方式desc,asc
- $scope.direction = 'top';//箭头方向 top,bottom
- switch ($scope.tap) {
- case 'ZHTJ'://综合统计
- $scope.mdxquery('total', 'desc');
- break;
- case 'DHTJ'://电话统计
- $scope.mdxquery('total', 'desc');
- break;
- case 'WEB'://微信/WEB统计
- $scope.mdxquery('total', 'desc');
- break;
- case 'DHLYTJ'://电话留言统计
- $scope.mdxquery('total', 'desc');
- break;
- }
- };
- //选择类型,综合统计,电话统计,微信/WEB统计,电话留言统计
- $scope.active = function (name) {
- $scope.tap = name;
- $scope.reload();
- };
- //综合统计,无限滚动加载
- $scope.topEndComplete = function(){
- console.log('滚动');
- };
- // 请求人
- // api_user_data.fetchDataList('requester', {
- // "idx": 0,
- // "sum": 10
- // }).then(function (response) {
- // if (response) {
- // if (response.status = 200) {
- // $scope.requester = response.list;
- // }
- // }
- // })
- //表格排序------------------------------------------------
- $scope.sortActive = '';//表格排序,箭头高亮选中状态
- $scope.name = '';//表格排序,字段名称
- $scope.type = '';//表格排序,排序方式desc,asc
- $scope.direction = '';//箭头方向 top,bottom
- /**
- * 表格排序
- *
- * @param {string} name 字段名称
- * @param {string} type 排序方式desc,asc
- * @param {string} direction 箭头方向 top,bottom
- */
- $scope.tableSort = function (name) {
- if($scope.name == name){
- $scope.type = $scope.type == 'desc'?'asc':'desc';
- $scope.direction = $scope.direction == 'top'?'bottom':'top';
- }else{
- $scope.type = 'desc';
- $scope.direction = 'top';
- }
- $scope.name = name;
- $scope.sortActive = name + $scope.direction;
- $scope.mdxquery(name, $scope.type);
- };
- $scope.isArrays = function (arr) {
- return Array.isArray(arr);
- };
- //综合统计
- $scope.zhtj_list = null;//表格列表
- $scope.zhtj_req_total = 0;//请求总数
- $scope.zhtj_req_phone = 0;//请求电话总数
- $scope.zhtj_req_wxweb = 0;//请求微信/web总数
- $scope.zhtj_req_msg = 0;//请求电话留言总数
- $scope.zhtj_req_desk = 0;//请求柜台总数
- $scope.zhtj_trans_total = 0;//工单转换总数
- $scope.zhtj_p_total = 0;//工单转换直接处理数
- $scope.zhtj_unp_total = 0;//工单转换处理工单数
- //电话统计
- $scope.dhtj_list = null;//表格列表
- $scope.dhtj_req_total = 0;//来电总数
- $scope.dhtj_req_answer = 0;//接听数量
- $scope.dhtj_req_miss = 0;//未接数量
- $scope.dhtj_p_total = 0;//电话建单总数
- $scope.dhtj_p_phone = 0;//直接解决
- $scope.dhtj_unp_phone = 0;//派单数量
- //微信/WEB统计
- $scope.web_list = null;//表格列表
- $scope.web_req_total = 0;//微信/WEB报修总数
- $scope.web_req_trans = 0;//转换数量
- $scope.web_req_reject = 0;//未转换数量
- $scope.web_trans_total = 0;//微信/WEB转换总数
- $scope.web_p_total = 0;//直接解决
- $scope.web_unp_total = 0;//派单
- //电话留言统计
- $scope.dhlytj_list = null;//表格列表
- $scope.dhlytj_req_total = 0;//电话留言总数
- $scope.dhlytj_req_trans = 0;//建单总数
- $scope.dhlytj_req_reject = 0;//不受理总数
- $scope.dhlytj_trans_total = 0;//电话留言转换总数
- $scope.dhlytj_p_total = 0;//直接解决总数
- $scope.dhlytj_unp_total = 0;//派单总数
- /**
- *
- *
- * @param {string} name 排序字段
- * @param {string} type 排序方式 desc,asc
- */
- $scope.mdxquery = function (name, type) {
- if (!name) {
- // name = $scope.tap == 'ZHTJ' ? 'accdate' : 'sum';
- name = 'total';
- }
- type = type || 'desc';
- switch ($scope.tap) {
- case 'ZHTJ'://综合统计
- $scope.zhtj_list = null;
- // 请求列表
- api_event_form.fetchZhtjList({
- "startTime": moment($scope.starttimesModel).format('YYYY-MM-DD'),
- "endTime": moment($scope.endtimesModel).format('YYYY-MM-DD'),
- "sortData": name,
- "sortType": type
- }).then(function (res) {
- if (res.stats == 200) {
- $scope.zhtj_list = res.dataList || [];//表格列表
- $scope.zhtj_req_total = res.title.req_total;//请求总数
- $scope.zhtj_req_phone = res.title.req_phone;//请求电话总数
- $scope.zhtj_req_wxweb = res.title.req_wxweb;//请求微信/web总数
- $scope.zhtj_req_msg = res.title.req_msg;//请求电话留言总数
- $scope.zhtj_req_desk = res.title.req_desk;//请求柜台总数
- $scope.zhtj_trans_total = res.title.trans_total;//工单转换总数
- $scope.zhtj_p_total = res.title.p_total;//工单转换直接处理数
- $scope.zhtj_unp_total = res.title.unp_total;//工单转换处理工单数
- }
- })
- break;
- case 'DHTJ'://电话统计
- $scope.dhtj_list = null;
- // 请求列表
- api_event_form.fetchDhtjList({
- "startTime": moment($scope.starttimesModel).format('YYYY-MM-DD'),
- "endTime": moment($scope.endtimesModel).format('YYYY-MM-DD'),
- "sortData": name,
- "sortType": type
- }).then(function (res) {
- if (res.stats == 200) {
- $scope.dhtj_list = res.dataList || [];//表格列表
- $scope.dhtj_req_total = res.title.req_total;//来电总数
- $scope.dhtj_req_answer = res.title.req_answer;//接听数量
- $scope.dhtj_req_miss = res.title.req_miss;//未接数量
- $scope.dhtj_p_total = res.title.p_total;//电话建单总数
- $scope.dhtj_p_phone = res.title.p_phone;//直接解决
- $scope.dhtj_unp_phone = res.title.unp_phone;//派单数量
- }
- })
- break;
- case 'WEB'://微信/WEB统计
- $scope.web_list = null;
- // 请求列表
- api_event_form.fetchWebList({
- "startTime": moment($scope.starttimesModel).format('YYYY-MM-DD'),
- "endTime": moment($scope.endtimesModel).format('YYYY-MM-DD'),
- "sortData": name,
- "sortType": type
- }).then(function (res) {
- if (res.stats == 200) {
- $scope.web_list = res.dataList || [];//表格列表
- $scope.web_req_total = res.title.req_total;//微信/WEB报修总数
- $scope.web_req_trans = res.title.req_trans;//转换数量
- $scope.web_req_reject = res.title.req_reject;//未转换数量
- $scope.web_trans_total = res.title.trans_total;//微信/WEB转换总数
- $scope.web_p_total = res.title.p_total;//直接解决
- $scope.web_unp_total = res.title.unp_total;//派单
- }
- })
- break;
- case 'DHLYTJ'://电话留言统计
- $scope.dhlytj_list = null;
- // 请求列表
- api_event_form.fetchDhlytjList({
- "startTime": moment($scope.starttimesModel).format('YYYY-MM-DD'),
- "endTime": moment($scope.endtimesModel).format('YYYY-MM-DD'),
- "sortData": name,
- "sortType": type
- }).then(function (res) {
- if (res.stats == 200) {
- $scope.dhlytj_list = res.dataList || [];//表格列表
- $scope.dhlytj_req_total = res.title.req_total;//电话留言总数
- $scope.dhlytj_req_trans = res.title.req_trans;//建单总数
- $scope.dhlytj_req_reject = res.title.req_reject;//不受理总数
- $scope.dhlytj_trans_total = res.title.trans_total;//电话留言转换总数
- $scope.dhlytj_p_total = res.title.p_total;//直接解决总数
- $scope.dhlytj_unp_total = res.title.unp_total;//派单总数
- }
- })
- break;
- }
- };
- //初始化
- $scope.mdxquery('total', 'desc');
- $scope.sortActive = 'totaltop';
- $scope.name = 'total';//表格排序,字段名称
- $scope.type = 'desc';//表格排序,排序方式desc,asc
- $scope.direction = 'top';//箭头方向 top,bottom
- }])
|