overview.js 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  1. 'use strict';
  2. /**
  3. * @ngdoc function
  4. * @name fehlerberichtApp.controller:AboutCtrl
  5. * @description
  6. * # AboutCtrl
  7. * Controller of the fehlerberichtApp
  8. */
  9. angular.module('fehlerberichtApp')
  10. .controller('OverviewCtrl', function ($scope, $http, $routeParams, $interval) {
  11. var webservice = 'http://rbs06:8090/fehlerbericht/db.php?';
  12. var PERIOD_VISIBLE = 60 * 1000;
  13. var PERIOD_NOT_VISIBLE = 5 * 60 * 1000;
  14. $scope.error = {
  15. 'level': -1,
  16. 'info': [],
  17. 'message': ""
  18. };
  19. $scope.domain = {
  20. 'bearbeitet': {
  21. '0': "angesehen",
  22. '1': "behoben",
  23. '2': "zugeteilt",
  24. '3': "Rücksprache mit Kunde",
  25. '4': "Serverproblem",
  26. '5': "Prozess läuft",
  27. '6': "ignoriert / egal",
  28. '7': "weitergeleitet"
  29. },
  30. 'comment': {
  31. '0': "glyphicon-eye-open",
  32. '1': "glyphicon-ok",
  33. '2': "glyphicon-user",
  34. '3': "glyphicon-earphone",
  35. '4': "glyphicon-flash",
  36. '5': "glyphicon-refresh",
  37. '6': "glyphicon-remove",
  38. '7': "glyphicon-share-alt"
  39. },
  40. 'statusfilter': {
  41. '2': 'nicht behoben',
  42. '5': 'läuft',
  43. '6': 'ignoriert'
  44. },
  45. 'fehler': {
  46. '0': "okay",
  47. '1': "fehlerhaft"
  48. },
  49. 'system': [
  50. '?',
  51. 'Autosys',
  52. 'Autosys-Light',
  53. 'CarIT-Audev',
  54. 'EDS',
  55. 'Filaks',
  56. 'GlobalCube',
  57. 'Navision',
  58. 'Optima',
  59. 'Optima-Light'
  60. ],
  61. 'datum': {},
  62. 'kunde': {},
  63. 'status': {
  64. 'errors': '1',
  65. 'all': '',
  66. 'missing': '',
  67. 'flawless': '0'
  68. },
  69. 'fehlend': {
  70. '1': 'fehlt',
  71. '0': 'vorhanden'
  72. },
  73. 'date': {
  74. 'all': moment().subtract(32, 'days').format('YYYY-MM-DD'),
  75. 'today': moment().format('YYYY-MM-DD'),
  76. 'yesterday': moment().subtract(1, 'days').format('YYYY-MM-DD')
  77. },
  78. 'benutzer': []
  79. };
  80. $scope.benutzer = window.localStorage.getItem("Benutzer");
  81. $scope.benutzer2 = 'bitte auswählen';
  82. $scope.overview = [];
  83. $scope.comments = {};
  84. $scope.comments2 = {};
  85. $scope.datum = [];
  86. $scope.current = {
  87. 'zeile' : {},
  88. 'fehler': {},
  89. 'details': null,
  90. 'status': 2,
  91. 'kommentar': {},
  92. 'fehlerdetails': null
  93. };
  94. $scope.Filter = {
  95. 'kunde': ($routeParams.customer === 'all' || _.contains($scope.domain.system, $routeParams.customer)) ? '' : $routeParams.customer,
  96. 'fehler': $scope.domain.status[$routeParams.status],
  97. 'fehlend': ($routeParams.status === 'missing') ? '1' : '',
  98. 'system': (_.contains($scope.domain.system, $routeParams.customer)) ? $routeParams.customer : '',
  99. 'benutzer': ''
  100. };
  101. $scope.DatumFilter = {
  102. 'von': (moment($routeParams.date, 'YYYY-MM-DD').isValid()) ? $routeParams.date : $scope.domain.date[$routeParams.date],
  103. 'bis': moment().format('YYYY-MM-DD'),
  104. 'datum': function (z) {
  105. return z.datum >= $scope.DatumFilter.von && z.datum <= $scope.DatumFilter.bis;
  106. }
  107. };
  108. $scope.Predicate = (function () {
  109. if ($routeParams.customer !== 'all') {
  110. return 'datum';
  111. }
  112. if ($routeParams.date === 'today' && $routeParams.status === 'errors') {
  113. return 'ende_soll';
  114. }
  115. return ['kunde','datum'];
  116. })();
  117. $scope.Reverse = ($routeParams.customer !== 'all');
  118. $scope.SearchText = '';
  119. $scope.removeItem = function (index) {
  120. // Beispiel
  121. $scope.Bestellungen = $scope.Bestellungen.splice(index, 1);
  122. };
  123. $http.get(webservice + 'a=benutzer').success(function (data) {
  124. $scope.domain.benutzer = _.unique(_.pluck(data, 'benutzer'));
  125. });
  126. $scope.refresh = function () {
  127. $http.get(webservice + 'a=liste&kunde=' + $scope.Filter.kunde + '&datum=' + $scope.DatumFilter.von + '&datum_bis=' + $scope.DatumFilter.bis).success(function (data) {
  128. if (JSON.stringify($scope.overview) !== JSON.stringify(data)) {
  129. $scope.overview = data;
  130. }
  131. //$scope.domain.benutzer = _.unique(_.pluck(data, 'benutzer'));
  132. });
  133. $http.get(webservice + 'a=kommentar&kunde=' + $scope.Filter.kunde + '&datum=' + $scope.DatumFilter.von + '&datum_bis=' + $scope.DatumFilter.bis).success(function (data) {
  134. $scope.comments = _.groupBy(data, 'kunde');
  135. $scope.comments2 = _.indexBy(data, 'id');
  136. });
  137. };
  138. $scope.importData = function () {
  139. $scope.error.level = 0;
  140. $scope.error.message = "Aktualisierung läuft!";
  141. $http.get('http://rbs06/GlobalCube/Fehlerbericht/app/import.php').success(function (data) {
  142. if (Array.isArray(data)) {
  143. $scope.error.info = data;
  144. if (data.length === 0) {
  145. $scope.error.level = 0;
  146. $scope.error.message = "Keine neuen Datensätze!";
  147. } else {
  148. $scope.error.message = "Neue Datensätze:";
  149. $scope.error.level = 0;
  150. $scope.refresh();
  151. }
  152. } else {
  153. $scope.error.info = [];
  154. $scope.error.level = 1;
  155. $scope.error.message = data;
  156. }
  157. });
  158. };
  159. $scope.refresh();
  160. var refreshTimer = $interval($scope.refresh, PERIOD_VISIBLE);
  161. if (document.addEventListener) {
  162. document.addEventListener("visibilitychange", visibilityChanged);
  163. }
  164. function visibilityChanged() {
  165. $interval.cancel(refreshTimer);
  166. if (document.visible) {
  167. $scope.refresh();
  168. }
  169. refreshTimer = $interval($scope.refresh, (document.hidden) ? PERIOD_NOT_VISIBLE : PERIOD_VISIBLE);
  170. }
  171. $scope.minuten = function (t) {
  172. var faktor, m, mins;
  173. if (!t) {
  174. return '';
  175. }
  176. faktor = 1;
  177. if (t < '00:00:00') {
  178. t = t.substring(1);
  179. faktor = -1;
  180. }
  181. m = moment(t, 'HH:mm:ss');
  182. mins = faktor * (m.minutes() + m.hours() * 60);
  183. return mins + " Min.";
  184. };
  185. $scope.timeDiffStart = function (z) {
  186. if (z.start === null) {
  187. return '';
  188. }
  189. var duration = moment.duration(z.start, 'HH:mm:ss').subtract(moment(z.start_soll, 'HH:mm:ss')).asMinutes();
  190. if (duration !== 0) {
  191. var plus = (duration > 0) ? '+' : '';
  192. return plus + duration + ' Minuten';
  193. }
  194. return '';
  195. };
  196. $scope.timeDiff = function (z) {
  197. if (z.start === null) {
  198. return '';
  199. }
  200. var duration = moment.duration(z.ende, 'HH:mm:ss').subtract(moment(z.ende_soll, 'HH:mm:ss')).asMinutes() - moment.duration(z.start, 'HH:mm:ss').subtract(moment(z.start_soll, 'HH:mm:ss')).asMinutes();
  201. if (duration !== 0) {
  202. var plus = (duration > 0) ? '+' : '';
  203. return '(' + plus + duration + ' Min.)';
  204. }
  205. return '';
  206. };
  207. $scope.dateFormat = function (date) {
  208. var d = moment(date, 'YYYY-MM-DD');
  209. if (d.isValid()) {
  210. if (date === $scope.domain.date.today) {
  211. return 'Heute';
  212. }
  213. if (date === $scope.domain.date.yesterday) {
  214. return 'Gestern';
  215. }
  216. return d.format('dd, DD.MM.YYYY');
  217. }
  218. return date;
  219. };
  220. $scope.dateTimeFormat = function (date) {
  221. var d = moment(date, 'YYYY-MM-DD HH:mm:ss');
  222. if (d.isValid()) {
  223. return d.format('DD.MM.YYYY, HH:mm');
  224. }
  225. return date;
  226. };
  227. $scope.timeFormat = function (t) {
  228. var d = moment(t, 'YYYY-MM-DD HH:mm:ss');
  229. if (d.isValid()) {
  230. return d.format('HH:mm:ss');
  231. }
  232. return t;
  233. };
  234. $scope.mailFormat = function (t) {
  235. if (t === undefined) {
  236. return '';
  237. }
  238. return _.map(t.split(';'), function (e) { return '<a href="mailto:' + e + '">' + e + '</a>'; }).join('<br/>');
  239. };
  240. $scope.left = function (text, length) {
  241. if (text.length === 0) {
  242. return '?';
  243. }
  244. return text.substring(0, length);
  245. };
  246. $scope.errorCount = function (e) {
  247. if (e === null) {
  248. return '0';
  249. }
  250. if (e.Errors.length === 0 || e.Errors.length === 1 && e.Errors[0] === '') {
  251. return $scope.daysCount(e);
  252. }
  253. var type = 'Info';
  254. if (e.ErrorLevel < 3) {
  255. type = 'Fehler';
  256. }
  257. return _.values(e.Errors).length + ' ' + type;
  258. };
  259. $scope.daysCount = function (e) {
  260. if (e.LastChangedDays === 0) {
  261. return '0';
  262. }
  263. return e.LastChangedDays + ' Tage alt';
  264. };
  265. $scope.errorLevel = function (e) {
  266. return e.ErrorLevel <= 2 || e.Name.indexOf('bat') > -1 || e.LastChangedDays >= 3;
  267. };
  268. $scope.setCurrent = function (row) {
  269. $scope.current.zeile = row;
  270. $scope.current.fehler = {};
  271. $scope.current.details = null;
  272. $scope.current.fehlerdetails = null;
  273. $scope.current.limit = 7;
  274. $scope.current.status = 2;
  275. $scope.current.kommentar = {};
  276. $scope.current.template = {
  277. 'id': '',
  278. 'datum': row.datum,
  279. 'kunde': row.kunde,
  280. 'start': row.start,
  281. 'benutzer': $scope.benutzer,
  282. 'fehler': (row.anzahl === null) ? 0 : parseInt(row.anzahl, 10),
  283. 'status': '0',
  284. 'kommentar': '',
  285. 'benutzer2': ''
  286. };
  287. $http.get(webservice + 'a=liste&kunde=' + $scope.current.zeile.kunde + '&datum=').success(function (data) {
  288. $scope.current.overview = data;
  289. });
  290. $http.get(webservice + 'a=fehlerbericht&kunde=' + $scope.current.zeile.kunde + '&datum=' + $scope.current.zeile.datum + '&start=' + $scope.current.zeile.start).success(function (data) {
  291. $scope.current.fehler = data;
  292. if (data.whitelist === undefined || data.whitelist === null) {
  293. data.whitelist = {
  294. 'User': [],
  295. 'Report': [],
  296. 'Layer': []
  297. };
  298. }
  299. if (data.kommentar.id !== undefined) {
  300. $scope.current.kommentar = data.kommentar;
  301. $scope.current.kommentar.fehler = parseInt(data.kommentar.fehler, 10);
  302. } else {
  303. $scope.current.kommentar = $scope.current.template;
  304. }
  305. if (data.fehlerbericht === undefined) {
  306. return;
  307. }
  308. data.fehlerbericht = _.sortBy(data.fehlerbericht, function(e) { return moment(e.Modified); });
  309. data.weitere = _.chain(data.fehlerbericht).reject($scope.errorLevel).groupBy(function (e) { return e.Type; }).value();
  310. var duration = _.map(_.filter(data.fehlerbericht, function (e) { return e.Summary !== null && e.Summary.Duration !== null && e.Summary.Duration >= '00:01:00'; }), function(e) { return { 'title': e.Type + ': ' + e.Name + ' (' + e.Summary.Duration + ')', 'value': Math.ceil(moment.duration(e.Summary.Duration, 'HH:mm:ss').asMinutes()) }; });
  311. var chart = AmCharts.makeChart( "durationChart", {
  312. "type": "pie",
  313. "theme": "light",
  314. "dataProvider": duration,
  315. "titleField": "title",
  316. "valueField": "value",
  317. "labelRadius": 5,
  318. "radius": "35%",
  319. "innerRadius": "40%",
  320. "labelText": "[[title]]",
  321. "export": {
  322. "enabled": false
  323. }
  324. } );
  325. });
  326. };
  327. $scope.getComments = function (zeile, today) {
  328. if ($scope.comments[zeile.kunde]) {
  329. var comments = _.filter($scope.comments[zeile.kunde], function (row) { return (today === '1') ? row.datum === zeile.datum : row.datum <= zeile.datum; });
  330. if (zeile.fehlend === '1') {
  331. return comments;
  332. }
  333. if (zeile.bearbeitet === '0') {
  334. var lastErrorComments = _.filter(comments, function (row) { return row.status > 0; });
  335. if (lastErrorComments.length > 0) {
  336. return lastErrorComments;
  337. }
  338. }
  339. var newComments = _.filter(comments, function (row) { return row.datum === zeile.datum; });
  340. if (newComments.length > 0) {
  341. return newComments;
  342. }
  343. }
  344. return false;
  345. };
  346. $scope.getCommentsInfo = function (comment_id, kunde, datum) {
  347. if ($scope.comments2[comment_id] !== undefined) {
  348. var c = $scope.comments2[comment_id];
  349. return '<i>' + $scope.domain.bearbeitet[c.status] + '</i><br/>' + c.kommentar;
  350. } else {
  351. var comments = _.filter($scope.comments[kunde], function (row) { return row.datum <= datum && row.status > 0; });
  352. var result = '';
  353. _.each(comments, function (c) {
  354. result += '<i>' + $scope.domain.bearbeitet[c.status] + '</i><br/>' + c.kommentar + '<br/>';
  355. });
  356. return result;
  357. }
  358. };
  359. $scope.getCommentIcon = function (c) {
  360. var c0 = c;
  361. if (c.length > 0) {
  362. c0 = c[0];
  363. }
  364. if (c0.status) {
  365. return $scope.domain.comment[c0.status];
  366. }
  367. return "glyphicon-question-sign";
  368. };
  369. $scope.shortFilename = function(filename) {
  370. if (filename !== undefined && filename.length > 0 && filename.indexOf("\\") >= 0) {
  371. return filename.substring(filename.lastIndexOf("\\") + 1);
  372. }
  373. return filename;
  374. };
  375. $scope.showDetails = function (entry) {
  376. $scope.current.details = entry;
  377. var duration = _.map(_.filter(entry.Sources, function(e) { return e.Duration > '00:01:00'; }), function(e) { return { 'title': $scope.shortFilename(e.Filename) + ' (' + e.Duration + ')', 'value': Math.round(moment.duration(e.Duration, 'HH:mm:ss').asMinutes()) }; });
  378. var chart = AmCharts.makeChart( "durationDetailsChart", {
  379. "type": "pie",
  380. "theme": "light",
  381. "dataProvider": duration,
  382. "titleField": "title",
  383. "valueField": "value",
  384. "labelRadius": 5,
  385. "radius": "42%",
  386. "innerRadius": "50%",
  387. "labelText": "[[title]]",
  388. "export": {
  389. "enabled": false
  390. }
  391. } );
  392. };
  393. $scope.saveUser = function (name) {
  394. window.localStorage.setItem("Benutzer", name);
  395. $scope.benutzer = name;
  396. };
  397. $scope.saveComments = function () {
  398. $http.put(webservice + 'a=kommentar&id=' + $scope.current.kommentar.id, $scope.current.kommentar).success(function (data) {
  399. $scope.comments = _.groupBy(data, 'kunde');
  400. if ($scope.current.kommentar.id === '') {
  401. $scope.refresh();
  402. }
  403. });
  404. };
  405. $scope.saveStartTime = function (zeile) {
  406. $http.put(webservice + 'a=zeit&kunde=' + zeile.kunde + '&start_soll=' + zeile.start + '&ende_soll=' + zeile.ende_soll).success(function (data) {
  407. zeile.start_soll = zeile.start;
  408. });
  409. };
  410. $scope.saveEndTime = function (zeile) {
  411. $http.put(webservice + 'a=zeit&kunde=' + zeile.kunde + '&start_soll=' + zeile.start_soll + '&ende_soll=' + zeile.ende).success(function (data) {
  412. zeile.ende_soll = zeile.ende;
  413. });
  414. };
  415. $scope.statusFilter = function (row) {
  416. return (row.status >= $scope.current.status || row.datum === $scope.current.zeile.datum);
  417. };
  418. $scope.editComment = function (c) {
  419. c.fehler = parseInt(c.fehler, 10);
  420. $scope.current.kommentar = c;
  421. };
  422. $scope.whitelistToggle = function (key, value) {
  423. var flag = (!$scope.inWhitelist(key, value)) ? "J" : "N";
  424. $http.put(webservice + 'a=whitelist&kunde=' + $scope.current.zeile.kunde + '&typ=' + key + '&wert=' + value + "&aktiv=" + flag).success(function (data) {
  425. if (data.whitelist !== undefined) {
  426. $scope.current.fehler.whitelist = data.whitelist;
  427. }
  428. });
  429. };
  430. $scope.inWhitelist = function (key, value) {
  431. return $scope.current.fehler.whitelist[key] !== undefined && _.contains($scope.current.fehler.whitelist[key], value);
  432. };
  433. });