stats.js 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. (function () {
  2. 'use strict';
  3. angular.module('fehlerberichtApp')
  4. .controller('StatsCtrl', function ($scope, $http, $routeParams) {
  5. var webservice = 'http://rbs06/fehlerbericht/db.php?';
  6. $scope.data = {};
  7. $scope.summary = {};
  8. $scope.options = {};
  9. $scope.customer = $routeParams.customer;
  10. $scope.refresh = function () {
  11. $scope.data = {};
  12. $scope.summary = {};
  13. $http.get(webservice + 'a=config&datum=current&kunde=' + $scope.customer).success(function (data) {
  14. if (data.current) {
  15. $scope.options.customer = _.keys(data.options);
  16. $scope.data = data.current.info;
  17. var reports = _.filter($scope.data.reports, function (row) {
  18. return row.Datei.match(/ver/i) === null && row.GIF === 'N';
  19. });
  20. $scope.summary = {
  21. '1. Portale': _.uniq(_.pluck(reports, 'Datei')),
  22. '1.1 Analyse-User': _.uniq(_.pluck(_.filter(reports, function (row) {
  23. return row.PDF === 'N';
  24. }), 'Benutzer')),
  25. '1.2 PDF-User': _.uniq(_.pluck(_.filter(reports, function (row) {
  26. return row.PDF === 'J';
  27. }), 'Benutzer')),
  28. '1.3 Ebenen': _.uniq(_.pluck(reports, 'Struktur')),
  29. '2. Versandintervalle': _.uniq(_.pluck($scope.data.versand, 'Datei')),
  30. '2.1 Empfänger': _.uniq(_.sortBy(_.pluck($scope.data.versand, 'Empfaenger'), function (row) {
  31. return row;
  32. })),
  33. '2.2 Reports': _.uniq(_.sortBy(_.pluck($scope.data.versand, 'Report'), function (row) {
  34. return row;
  35. })),
  36. '3. Cubes': _.uniq(_.sortBy(_.filter(_.pluck($scope.data.ppr, 'Cube'), function (row) {
  37. return row !== '';
  38. }), function (row) {
  39. return row;
  40. })),
  41. '4. Fehlende Reports': _.uniq(_.pluck(_.filter($scope.data.ppr, function (row) {
  42. return row.PPR === 'fehlt' && row.Typ === 'PPR';
  43. }), 'Report'))
  44. };
  45. }
  46. });
  47. };
  48. $scope.refresh();
  49. $scope.test = function (v) {
  50. return v.match(/(test|global-cube)/i);
  51. };
  52. }
  53. );
  54. })();