overview.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  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/fehlerbericht/db.php?';
  12. $scope.error = {
  13. 'level': -1,
  14. 'info': [],
  15. 'message': ""
  16. };
  17. $scope.domain = {
  18. 'bearbeitet': {
  19. '0': "angesehen",
  20. '1': "behoben",
  21. '2': "übernommen",
  22. '3': "Rücksprache mit Kunde",
  23. '4': "Serverproblem",
  24. '5': "Prozess läuft",
  25. '6': "ignoriert / egal"
  26. },
  27. 'comment': {
  28. '0': "glyphicon-eye-open",
  29. '1': "glyphicon-ok",
  30. '2': "glyphicon-user",
  31. '3': "glyphicon-earphone",
  32. '4': "glyphicon-flash",
  33. '5': "glyphicon-refresh",
  34. '6': "glyphicon-remove"
  35. },
  36. 'statusfilter': {
  37. '2': 'nicht behoben',
  38. '5': 'läuft',
  39. '6': 'ignoriert'
  40. },
  41. 'fehler': {
  42. '0': "okay",
  43. '1': "fehlerhaft"
  44. },
  45. 'system': [
  46. '?',
  47. 'Autosys',
  48. 'Autosys-Light',
  49. 'EDS',
  50. 'Filaks',
  51. 'GlobalCube',
  52. 'Light',
  53. 'Navision',
  54. 'Optima'
  55. ],
  56. 'datum': {},
  57. 'kunde': {},
  58. 'status': {
  59. 'errors': '1',
  60. 'all': '',
  61. 'missing': '',
  62. 'flawless': '0'
  63. },
  64. 'fehlend': {
  65. '1': 'fehlt',
  66. '0': 'vorhanden'
  67. },
  68. 'date': {
  69. 'all': '',
  70. 'today': moment().format('YYYY-MM-DD'),
  71. 'yesterday': moment().subtract(1, 'days').format('YYYY-MM-DD')
  72. },
  73. 'benutzer': []
  74. };
  75. $scope.benutzer = window.localStorage.getItem("Benutzer");
  76. $scope.overview = [];
  77. $scope.comments = {};
  78. $scope.datum = [];
  79. $scope.current = {
  80. 'zeile' : {},
  81. 'fehler': {},
  82. 'details': null,
  83. 'status': 2,
  84. 'kommentar': {}
  85. };
  86. $scope.Filter = {
  87. 'datum': (moment($routeParams.date).isValid()) ? moment($routeParams.date).format('YYYY-MM-DD') : $scope.domain.date[$routeParams.date],
  88. 'kunde': ($routeParams.customer === 'all') ? '' : $routeParams.customer,
  89. 'fehler': $scope.domain.status[$routeParams.status],
  90. 'fehlend': ($routeParams.status === 'missing') ? '1' : '',
  91. 'system': '',
  92. 'benutzer': ''
  93. };
  94. $scope.Predicate = (function () {
  95. if ($routeParams.customer !== 'all') {
  96. return 'datum';
  97. }
  98. if ($routeParams.date === 'today' && $routeParams.status === 'errors') {
  99. return 'ende_soll';
  100. }
  101. return ['kunde','datum'];
  102. })();
  103. $scope.Reverse = ($routeParams.customer !== 'all');
  104. $scope.SearchText = '';
  105. $scope.removeItem = function (index) {
  106. // Beispiel
  107. $scope.Bestellungen = $scope.Bestellungen.splice(index, 1);
  108. };
  109. $http.get(webservice + 'a=benutzer').success(function (data) {
  110. $scope.domain.benutzer = _.unique(_.pluck(data, 'benutzer'));
  111. });
  112. $scope.refresh = function () {
  113. $http.get(webservice + 'a=liste&kunde=' + $scope.Filter.kunde + '&datum=' + $scope.Filter.datum).success(function (data) {
  114. $scope.overview = data;
  115. //$scope.domain.benutzer = _.unique(_.pluck(data, 'benutzer'));
  116. });
  117. $http.get(webservice + 'a=kommentar&kunde=' + $scope.Filter.kunde + '&datum=' + $scope.Filter.datum).success(function (data) {
  118. $scope.comments = _.groupBy(data, 'kunde');
  119. });
  120. };
  121. $scope.importData = function () {
  122. $scope.error.level = 0;
  123. $scope.error.message = "Aktualisierung läuft!";
  124. $http.get('http://rbs06/GlobalCube/Fehlerbericht/app/import.php').success(function (data) {
  125. if (Array.isArray(data)) {
  126. $scope.error.info = data;
  127. if (data.length === 0) {
  128. $scope.error.level = 0;
  129. $scope.error.message = "Keine neuen Datensätze!";
  130. } else {
  131. $scope.error.message = "Neue Datensätze:";
  132. $scope.error.level = 0;
  133. $scope.refresh();
  134. }
  135. } else {
  136. $scope.error.info = [];
  137. $scope.error.level = 1;
  138. $scope.error.message = data;
  139. }
  140. });
  141. };
  142. $scope.refresh();
  143. $interval($scope.refresh, 5 * 60 * 1000);
  144. $scope.minuten = function (t) {
  145. var faktor, m, mins;
  146. if (!t) {
  147. return '';
  148. }
  149. faktor = 1;
  150. if (t < '00:00:00') {
  151. t = t.substring(1);
  152. faktor = -1;
  153. }
  154. m = moment(t, 'HH:mm:ss');
  155. mins = faktor * (m.minutes() + m.hours() * 60);
  156. return mins + " Min.";
  157. };
  158. $scope.timeDiffStart = function (z) {
  159. if (z.start === null) {
  160. return '';
  161. }
  162. var duration = moment.duration(z.start, 'HH:mm:ss').subtract(moment(z.start_soll, 'HH:mm:ss')).asMinutes();
  163. if (duration !== 0) {
  164. var plus = (duration > 0) ? '+' : '';
  165. return plus + duration + ' Minuten';
  166. }
  167. return '';
  168. };
  169. $scope.timeDiff = function (z) {
  170. if (z.start === null) {
  171. return '';
  172. }
  173. 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();
  174. if (duration !== 0) {
  175. var plus = (duration > 0) ? '+' : '';
  176. return '(' + plus + duration + ' Min.)';
  177. }
  178. return '';
  179. };
  180. $scope.dateFormat = function (date) {
  181. var d = moment(date, 'YYYY-MM-DD');
  182. if (d.isValid()) {
  183. if (date === $scope.domain.date.today) {
  184. return 'Heute';
  185. }
  186. if (date === $scope.domain.date.yesterday) {
  187. return 'Gestern';
  188. }
  189. return d.format('dd, DD.MM.YYYY');
  190. }
  191. return date;
  192. };
  193. $scope.timeFormat = function (t) {
  194. var d = moment(t, 'YYYY-MM-DD HH:mm:ss');
  195. if (d.isValid()) {
  196. return d.format('HH:mm:ss');
  197. }
  198. return t;
  199. };
  200. $scope.mailFormat = function (t) {
  201. if (t === undefined) {
  202. return '';
  203. }
  204. return _.map(t.split(';'), function (e) { return '<a href="mailto:' + e + '">' + e + '</a>'; }).join('<br/>');
  205. };
  206. $scope.left = function (text, length) {
  207. if (text.length === 0) {
  208. return '?';
  209. }
  210. return text.substring(0, length);
  211. };
  212. $scope.errorCount = function (e) {
  213. if (e.Errors.length === 0 || e.Errors.length === 1 && e.Errors[0] === '') {
  214. return $scope.daysCount(e);
  215. }
  216. var type = 'Info';
  217. if (e.ErrorLevel < 3) {
  218. type = 'Fehler';
  219. }
  220. return e.Errors.length + ' ' + type;
  221. };
  222. $scope.daysCount = function (e) {
  223. if (e.LastChangedDays === 0) {
  224. return '0';
  225. }
  226. return e.LastChangedDays + ' Tage alt';
  227. };
  228. $scope.errorLevel = function (e) {
  229. return e.ErrorLevel <= 2 || e.Name.indexOf('bat') > -1 || e.LastChangedDays >= 3;
  230. };
  231. $scope.setCurrent = function (row) {
  232. $scope.current.zeile = row;
  233. $scope.current.fehler = {};
  234. $scope.current.details = null;
  235. $scope.current.status = 2;
  236. $scope.current.kommentar = {};
  237. $scope.current.template = {
  238. 'id': '',
  239. 'datum': row.datum,
  240. 'kunde': row.kunde,
  241. 'start': row.start,
  242. 'benutzer': $scope.benutzer,
  243. 'fehler': (row.anzahl === null) ? 0 : parseInt(row.anzahl, 10),
  244. 'status': '0',
  245. 'kommentar': ''
  246. };
  247. $http.get(webservice + 'a=fehlerbericht&kunde=' + $scope.current.zeile.kunde + '&datum=' + $scope.current.zeile.datum + '&start=' + $scope.current.zeile.start).success(function (data) {
  248. $scope.current.fehler = data;
  249. if (data.benutzer === '' || data.benutzer !== $scope.benutzer) {
  250. $scope.current.kommentar = $scope.current.template;
  251. } else {
  252. $scope.current.kommentar = $scope.comments[data.kunde][0];
  253. $scope.current.kommentar.fehler = parseInt($scope.current.kommentar.fehler, 10);
  254. }
  255. data.fehlerbericht = _.sortBy(data.fehlerbericht, function(e) { return moment(e.Modified); });
  256. data.weitere = _.chain(data.fehlerbericht).reject($scope.errorLevel).groupBy(function (e) { return e.Type; }).value();
  257. 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 { 'label': e.Type + ': ' + e.Name + ' (' + e.Summary.Duration + ')', 'data': moment.duration(e.Summary.Duration, 'HH:mm:ss').asMinutes() }; });
  258. $.plot('#duration', duration, {
  259. series: {
  260. pie: {
  261. show: true,
  262. radius: 0.8
  263. }
  264. },
  265. legend: {
  266. show: true
  267. }
  268. });
  269. });
  270. };
  271. $scope.getComments = function (zeile) {
  272. if ($scope.comments[zeile.kunde]) {
  273. if (zeile.fehlend === '1') {
  274. return $scope.comments[zeile.kunde];
  275. }
  276. var newComments = _.filter($scope.comments[zeile.kunde], function (row) { return row.datum === zeile.datum; });
  277. if (newComments.length > 0) {
  278. return newComments;
  279. }
  280. }
  281. return false;
  282. };
  283. $scope.getCommentIcon = function (c) {
  284. var c0 = c;
  285. if (c.length > 0) {
  286. c0 = c[0];
  287. }
  288. if (c0.status) {
  289. return $scope.domain.comment[c0.status];
  290. }
  291. return "glyphicon-question-sign";
  292. };
  293. $scope.shortFilename = function(filename) {
  294. if (filename !== undefined && filename.length > 0 && filename.indexOf("\\") >= 0) {
  295. return filename.substring(filename.lastIndexOf("\\") + 1);
  296. }
  297. return filename;
  298. };
  299. $scope.showDetails = function (entry) {
  300. $scope.current.details = entry;
  301. var duration = _.map(_.filter(entry.Sources, function(e) { return e.Duration > '00:01:00'; }), function(e) { return { 'label': $scope.shortFilename(e.Filename) + ' (' + e.Duration + ')', 'data': Math.round(moment.duration(e.Duration, 'HH:mm:ss').asMinutes()) }; });
  302. $.plot('#duration_details', duration, {
  303. series: {
  304. pie: {
  305. show: true,
  306. radius: 0.8
  307. }
  308. },
  309. legend: {
  310. show: true
  311. }
  312. });
  313. };
  314. $scope.saveUser = function (name) {
  315. window.localStorage.setItem("Benutzer", name);
  316. $scope.benutzer = name;
  317. };
  318. $scope.saveComments = function () {
  319. $http.put(webservice + 'a=kommentar&id=' + $scope.current.kommentar.id, $scope.current.kommentar).success(function (data) {
  320. $scope.comments = data;
  321. if ($scope.current.kommentar.id === '') {
  322. $scope.refresh();
  323. }
  324. });
  325. };
  326. $scope.saveStartTime = function (zeile) {
  327. $http.put(webservice + 'a=zeit&kunde=' + zeile.kunde + '&start_soll=' + zeile.start + '&ende_soll=' + zeile.ende_soll).success(function (data) {
  328. zeile.start_soll = zeile.start;
  329. });
  330. };
  331. $scope.saveEndTime = function (zeile) {
  332. $http.put(webservice + 'a=zeit&kunde=' + zeile.kunde + '&start_soll=' + zeile.start_soll + '&ende_soll=' + zeile.ende).success(function (data) {
  333. zeile.ende_soll = zeile.ende;
  334. });
  335. };
  336. $scope.statusFilter = function (row) {
  337. return (row.status >= $scope.current.status);
  338. };
  339. });