123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496 |
- 'use strict';
- /**
- * controller for User Profile Example
- */
- app.controller('scoreConfigurationPerformanceCtrl', ["$rootScope", "$scope", "$state", "$timeout", "$interval", "$modal", "SweetAlert", "i18nService", "uiGridConstants", "uiGridGroupingConstants", "Restangular", "api_bpm_schedule", "api_bpm_data", "api_wechatfile", "api_configure_data", "moment", function ($rootScope, $scope, $state, $timeout, $interval, $modal, SweetAlert, i18nService, uiGridConstants, uiGridGroupingConstants, Restangular, api_bpm_schedule, api_bpm_data, api_wechatfile, api_configure_data, moment) {
- $scope.langs = i18nService.getAllLangs();
- $scope.lang = 'zh-cn';
- i18nService.setCurrentLang($scope.lang);
- var loginUser = $rootScope.user;
- $scope.xinzeng = false;
- $scope.shanchu = false;
- $scope.bianji = false;
- $scope.zantingzhixing = false;
- for (var i = 0; i < loginUser.menu.length; i++) {
- if (loginUser.menu[i].link == "xunjianjihua_xinzeng") {
- $scope.xinzeng = true
- }
- if (loginUser.menu[i].link == "xunjianjihua_shanchu") {
- $scope.shanchu = true
- }
- if (loginUser.menu[i].link == "xunjianjihua_bianji") {
- $scope.bianji = true
- }
- if (loginUser.menu[i].link == "xunjianjihua_zantingzhixing") {
- $scope.zantingzhixing = true
- }
- }
- var defaultFilterData = {
- "idx": 0,
- "sum": 10
- };
- $scope.gridOptions = {};
- $scope.gridOptions.data = 'myData';
- $scope.gridOptions.enableColumnResizing = true;
- $scope.gridOptions.enableFiltering = false;
- $scope.gridOptions.enableGridMenu = true;
- $scope.gridOptions.enableRowSelection = true;
- $scope.gridOptions.showGridFooter = true;
- $scope.gridOptions.showColumnFooter = false;
- $scope.gridOptions.useExternalFiltering = false;
- $scope.gridOptions.useExternalPagination = true;
- $scope.gridOptions.paginationPageSizes = [10, 20, 50, 100];
- $scope.gridOptions.paginationPageSize = 10;
- $scope.gridOptions.multiSelect = true;
- $scope.gridOptions.enableSelectionBatchEvent = true; //使用批量使用事件
- //行鼠标悬浮变色功能
- // $scope.gridOptions.rowTemplate = '<div ng-repeat="(colRenderIndex, col) in colContainer.renderedColumns track by col.uid" ng-mouseover="grid.appScope.hoveredIndex = rowRenderIndex" ng-mouseleave="grid.appScope.hoveredIndex = null" ui-grid-one-bind-id-grid="rowRenderIndex + \'-\' + col.uid + \'-cell\'" class="ui-grid-cell" ng-class="{\'ui-grid-row-header-cell\': col.isRowHeader, \'your-hover-class\': grid.appScope.hoveredIndex === rowRenderIndex}" role="{{col.isRowHeader ? \'rowheader\' : \'gridcell\'}}" ui-grid-cell></div>';
- $scope.gridOptions.rowTemplate = "<div ng-dblclick=\"grid.appScope.onDblClick(row)\" ng-repeat=\"(colRenderIndex, col) in colContainer.renderedColumns track by col.uid\" ui-grid-one-bind-id-grid=\"rowRenderIndex + '-' + col.uid + '-cell'\" class=\"ui-grid-cell\" ng-class=\"{ 'ui-grid-row-header-cell': col.isRowHeader }\" role=\"{{col.isRowHeader ? 'rowheader' : 'gridcell'}}\" ui-grid-cell></div>";
- $scope.gridOptions.rowIdentity = function (row) {
- return row.id;
- };
- $scope.gridOptions.getRowIdentity = function (row) {
- return row.id;
- };
- $scope.transfer = function (status) {
- if (status === "执行中") {
- return "执行中"
- } else if (status === "暂停中") {
- return "暂停中"
- }
- }
- $scope.gridOptions.columnDefs = [{
- name: 'item',
- displayName: '序号',
- width: 50,
- enableFiltering: false
- },
-
- {
- name: 'one',
- displayName: '一级分类',
- width: '10%',
- enableFiltering: false
- },
- {
- name: 'two',
- displayName: '二级分类',
- width: '10%',
- enableFiltering: false
- },
- {
- name: 'three',
- displayName: '三级分类',
- width: '10%',
- enableFiltering: false
- },
- {
- name: 'four',
- displayName: '默认积分',
- width: '10%',
- enableFiltering: false
- },
- {
- name: 'five',
- displayName: '积分规则',
- width: '10%',
- enableFiltering: false
- },
- {
- minWidth: '300',
- name: '操作',
- enableFiltering: false,
- cellTemplate: '<div class="cl-effect-1 ui-grid-cell-contents pull-left">' +
- '<a ng-click="grid.appScope.edit(row.entity)">编辑</a>' +
- '</div>'
- },
- ];
-
- // 批量修改积分
- $scope.edits = function (data) {
- console.log(data);
- var modalInstance = $modal.open({
- templateUrl: 'assets/views/scoreConfigurationPerformance-edit.html',
- size: "sm",
- controller: function ($scope, $modalInstance) {
- $scope.configs = {
- defaultScore:0,
- configs: []
- };
- // 增加配置
- $scope.addConfig = function(){
- $scope.configs.configs.push({startNum: 0, endNum: 0, score: 0});
- }
- // 移除配置
- $scope.removeConfig = function(index){
- $scope.configs.configs.splice(index, 1);
- }
- $scope.ok = function () {
- $modalInstance.close(data);
- };
- $scope.cancel = function () {
- $modalInstance.dismiss('cancel');
- };
- },
- })
- modalInstance.result.then(function (result) {
- console.log(result);
- if (result) {
- api_bpm_data.executeOnce({inspection:data}).then(function (response) {
- if(response.status == 200){
- SweetAlert.swal({
- title: "操作成功!",
- type: "success",
- });
- }else{
- SweetAlert.swal({
- title: "操作失败!",
- type: "error",
- });
- }
- })
- }
- });
- };
- //编辑
- $scope.edit = function (data) {
- console.log(data);
- var modalInstance = $modal.open({
- templateUrl: 'assets/views/scoreConfigurationPerformance-edit.html',
- size: "sm",
- controller: function ($scope, $modalInstance) {
- $scope.configs = {
- defaultScore:0,
- configs: []
- };
- // 增加配置
- $scope.addConfig = function(){
- $scope.configs.configs.push({startNum: 0, endNum: 0, score: 0});
- }
- // 移除配置
- $scope.removeConfig = function(index){
- $scope.configs.configs.splice(index, 1);
- }
- $scope.ok = function () {
- $modalInstance.close(data);
- };
- $scope.cancel = function () {
- $modalInstance.dismiss('cancel');
- };
- },
- })
- modalInstance.result.then(function (result) {
- console.log(result);
- if (result) {
- api_bpm_data.executeOnce({inspection:data}).then(function (response) {
- if(response.status == 200){
- SweetAlert.swal({
- title: "操作成功!",
- type: "success",
- });
- }else{
- SweetAlert.swal({
- title: "操作失败!",
- type: "error",
- });
- }
- })
- }
- });
- };
- $scope.selected = {
- items: []
- }
- $scope.gridOptions.onRegisterApi = function (gridApi) {
- //导入gridApi对象
- $scope.gridApi = gridApi;
- //勾选行事件
- gridApi.selection.on.rowSelectionChanged($scope, function (data) {
- if (data.isSelected) {
- $scope.selected.items.push(data.entity);
- } else {
- //objs:需要遍历的集合 data:遍历时当前的数据 index:遍历时当前索引
- //array:需要遍历的集合,每次遍历时都会把objs原样的传一次。
- //angular.forEach(objs, function(data,index,array)
- angular.forEach($scope.selected.items, function (ObjIndex, index, destObj) {
- // console.log(ObjIndex);
- // console.log(index);
- // console.log(destObj);
- if (ObjIndex.id == data.entity.id) {
- destObj.splice(index, 1)
- }
- })
- }
- });
- //批量全选
- gridApi.selection.on.rowSelectionChangedBatch($scope, function (rows, event) {
- // if ($scope.selected.items.length != 0) {
- // $scope.selected.items = [];
- angular.forEach(rows, function (ObjIndex, index, destObj) {
- if (ObjIndex.isSelected) {
- $scope.selected.items.push(ObjIndex.entity);
- } else {
- $scope.selected.items = [];
- // $scope.selected.items.splice(index, 1);
- }
- });
- // } else {
- // }
- // $scope.mySelectedRows = $scope.gridApi.selection.getSelectedRows();
- // if ($scope.selected.items.length == 0) {
- // $scope.selected.items = $scope.mySelectedRows;
- // } else if ($scope.mySelectedRows.length == 0) {
- // for (var i = 0; i < $scope.selected.items.length; i++) {
- // for (var j = 0; j < rows.length; j++) {
- // if ($scope.selected.items[i].id == rows[j].entity.id) {
- // $scope.selected.items.splice(i, 1);
- // }
- // }
- // }
- // } else {
- // angular.forEach($scope.mySelectedRows, function(item) {
- // $scope.selected.items.push(item);
- // });
- // }
- });
- };
- //重置按钮
- $scope.reload = function () {
- delete $scope.fileData.inspection.inspectionTypeDTO;
- delete $scope.fileData.inspection.executeUser;
- delete $scope.fileData.inspection.createUser;
- $scope.refreshData('expand-right', $scope.fileData);
- }
- //数据刷新
- $scope.refreshData = function (style, filterData) {
- $scope.ldloading[style.replace('-', '_')] = true;
- if (angular.isUndefined(filterData)) {
- filterData = defaultFilterData;
- }
- $scope.myData = [];
- api_bpm_data.fetchDataList('inspection', filterData).then(function (data) {
- var myData = Restangular.stripRestangular(data);
- $scope.gridOptions.totalItems = myData.totalNum;
- if (angular.isArray(myData.list)) {
- $scope.myData = myData.list;
- for (var i = 0; i < $scope.myData.length; i++) {
- $scope.myData[i]['item'] = i + 1 + filterData.idx * filterData.sum
- if($scope.myData[i].onDoing + $scope.myData[i].onCompleted != 0){
- $scope.myData[i].onPercent = ($scope.myData[i].onCompleted*100/($scope.myData[i].onDoing + $scope.myData[i].onCompleted)).toFixed(1);
- }else if($scope.myData[i].onCompleted == 0){
- $scope.myData[i].onPercent = '0.0';
- }else{
- $scope.myData[i].onPercent = '0.0';
- }
- if($scope.myData[i].offDoing + $scope.myData[i].offCompleted != 0){
- $scope.myData[i].offPercent = ($scope.myData[i].offCompleted*100/($scope.myData[i].offDoing + $scope.myData[i].offCompleted)).toFixed(1);
- }else if($scope.myData[i].offCompleted == 0){
- $scope.myData[i].offPercent = '0.0';
- }else{
- $scope.myData[i].offPercent = '0.0';
- }
- }
- console.log($scope.myData)
- for (var i = 0; i < $scope.myData.length; i++) {
- if ($scope.myData[i].status == "执行中") {
- $scope.myData[i].style = "fa fa-play";
- } else if ($scope.myData[i].status == "暂停中") {
- $scope.myData[i].style = "fa fa-pause";
- };
- $scope.myData[i].runStatus = $scope.transfer($scope.myData[i].status);
- }
- } else {
- SweetAlert.swal({
- title: "数据为空",
- text: myData.data,
- type: "warning"
- });
- }
- $scope.ldloading[style.replace('-', '_')] = false;
- }, function () {
- $scope.ldloading[style.replace('-', '_')] = false;
- });
- };
- $scope.refreshData2 = function (style, filterData) {
- $scope.ldloading[style.replace('-', '_')] = true;
- if (angular.isUndefined(filterData)) {
- filterData = defaultFilterData;
- }
- api_bpm_data.fetchDataList('inspection', filterData).then(function (data) {
- var myData = Restangular.stripRestangular(data);
- $scope.gridOptions.totalItems = myData.totalNum;
- if (angular.isArray(myData.list)) {
- $scope.myData = myData.list;
- for (var i = 0; i < $scope.myData.length; i++) {
- $scope.myData[i]['item'] = i + 1 + filterData.idx * filterData.sum
- if($scope.myData[i].doing + $scope.myData[i].completed != 0){
- $scope.myData[i].percent = ($scope.myData[i].completed*100/($scope.myData[i].doing + $scope.myData[i].completed)).toFixed(1);
- }else if($scope.myData[i].completed == 0){
- $scope.myData[i].percent = '0.0';
- }else{
- $scope.myData[i].percent = '0.0';
- }
- }
- console.log($scope.myData)
- for (var i = 0; i < $scope.myData.length; i++) {
- if ($scope.myData[i].status == "执行中") {
- $scope.myData[i].style = "fa fa-play";
- } else if ($scope.myData[i].status == "暂停中") {
- $scope.myData[i].style = "fa fa-pause";
- };
- $scope.myData[i].runStatus = $scope.transfer($scope.myData[i].status);
- }
- } else {
- SweetAlert.swal({
- title: "数据为空",
- text: myData.data,
- type: "warning"
- });
- }
- $scope.ldloading[style.replace('-', '_')] = false;
- }, function () {
- $scope.ldloading[style.replace('-', '_')] = false;
- });
- };
- $scope.ldloading = {};
- $scope.fileData = {
- "idx": 0,
- "sum": 10,
- "inspection": {}
- }
- $scope.searchinspe = function () {
- $scope.refreshData('expand-right', $scope.fileData);
- }
- // 获取一级分类
- $scope.getOneCates = function () {
- api_configure_data.fetchDataList("incidentcategory", {
- "idx": 0,
- "sum": 1000,
- "incidentcategory": {
- hierarchy: 1
- }
- }).then(function (res) {
- $scope.one_cates = res.list
- })
- }
- $scope.getOneCates()
- // 获取二级分类
- $scope.getTwoCates = function () {
- api_configure_data.fetchDataList("incidentcategory", {
- "idx": 0,
- "sum": 1000,
- "incidentcategory": {
- hierarchy: 1
- }
- }).then(function (res) {
- $scope.two_cates = res.list
- })
- }
- $scope.getTwoCates()
- $scope.refreshData('expand-right', $scope.fileData);
- $scope.timer = $interval(function () {
- $scope.refreshData2('expand-right', $scope.fileData);
- }, $rootScope.refreshTime);
- $scope.$on('$destroy', function () {
- $interval.cancel($scope.timer)
- })
- }]);
- app.factory('inspectListMobileCtrlTree', ['api_bpm_data', function (api_bpm_data) {
- function convertListToTree(data, treeMap) {
- var idToNodeMap = {};
- var root = null;
- var parentNode = null;
- for (var i = 0; i < data.length; i++) {
- var datum = data[i];
- datum.children = [];
- idToNodeMap[datum.id] = datum;
- if (typeof datum.parent === "undefined" || datum.parent == null) {
- root = datum;
- treeMap[datum.id] = root;
- } else {
- parentNode = idToNodeMap[datum.parent];
- delete datum.parent;
- parentNode.children.push(datum);
- }
- }
- return root;
- };
- function convertParentToChildList(data) {
- var treeMap = {};
- var list = [];
- convertListToTree(data, treeMap);
- angular.forEach(treeMap, function (item) {
- list.push(item);
- });
- return list;
- };
- var forEachEelement = function forEachEelement(response) {
- var objects = [];
- angular.forEach(response.list, function (ObjIndex, index, destObj) {
- var object = {};
- object.id = ObjIndex.id;
- object.label = ObjIndex.type;
- if (ObjIndex.parent && ObjIndex.parent.id != 0) {
- object.parent = ObjIndex.parent.id;
- };
- if (ObjIndex.formUiEdit) {
- object.formUiEdit = ObjIndex.formUiEdit;
- };
- if (ObjIndex.formUiName) {
- object.formUiName = ObjIndex.formUiName;
- };
- if (ObjIndex.processKey) {
- object.processKey = ObjIndex.processKey;
- };
- if (ObjIndex.formUiStart) {
- object.formUiStart = ObjIndex.formUiStart;
- };
- objects.push(object);
- });
- var my_data = convertParentToChildList(objects);
- var tree_data = angular.copy(my_data);
- return {
- 'my_data': my_data,
- 'tree_data': tree_data
- }
- }
- return forEachEelement;
- }]);
|