config.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. 'use strict';
  2. angular.module('fehlerberichtApp')
  3. .controller('ConfigCtrl', function ($scope, $http, $routeParams) {
  4. var webservice = 'http://rbs06:8090/fehlerbericht/db.php?';
  5. $scope.current = {
  6. 'kunde': $routeParams.customer,
  7. 'datum': $routeParams.date,
  8. 'tabelle': ''
  9. };
  10. $scope.data = {};
  11. $scope.domain = {};
  12. $scope.filter = {};
  13. $scope.options = {
  14. 'kunde': [],
  15. 'datum': {}
  16. };
  17. $scope.dateFormat = function (date) {
  18. var d = moment(date, 'YYYY-MM-DD');
  19. if (d.isValid()) {
  20. return d.format('dd, DD.MM.YYYY');
  21. }
  22. return date;
  23. };
  24. $scope.emails = function () {
  25. if ($scope.domain !== undefined && $scope.domain.versand !== undefined && $scope.domain.versand.Empfaenger !== undefined) {
  26. return $scope.domain.versand.Empfaenger.join('\r\n');
  27. }
  28. return "";
  29. };
  30. $scope.csvExport = function () {
  31. var file = new File([ $scope.getCsv() ], $scope.current.kunde + "_" + $scope.current.tabelle + ".csv", {type: "text/plain;charset=iso-8859-1"});
  32. saveAs(file);
  33. return "";
  34. };
  35. $scope.getCsv = function () {
  36. var result = _.keys($scope.data[$scope.current.tabelle][0]).join(';').replace('$$hashKey','Nr.') + '\r\n';
  37. _.each($scope.data[$scope.current.tabelle], function (row, i) {
  38. _.each(row, function (col, k) {
  39. if (k !== '$$hashKey') {
  40. result += col + ';';
  41. } else {
  42. result += (i+1);
  43. }
  44. });
  45. result += '\r\n';
  46. });
  47. return result;
  48. };
  49. $scope.refresh = function () {
  50. $scope.data = {};
  51. $http.get(webservice + 'a=config&kunde=' + $scope.current.kunde + '&datum=' + $scope.current.datum).success(function (data) {
  52. $scope.options.datum = data.options;
  53. $scope.options.datum[undefined] = [];
  54. $scope.options.kunde = _.keys(data.options);
  55. if (data.current) {
  56. $scope.current.datum = data.current.datum;
  57. $scope.options.tabelle = _.keys(data.current.info);
  58. $scope.current.tabelle = _.first($scope.options.tabelle);
  59. $scope.data = data.current.info;
  60. _.each($scope.data, function (table, t) {
  61. $scope.domain[t] = {};
  62. $scope.filter[t] = {};
  63. _.each(table[0], function (col, k) {
  64. $scope.domain[t][k] = _.uniq(_.pluck(table, k));
  65. $scope.domain[t][k].sort();
  66. $scope.filter[t][k] = '';
  67. });
  68. });
  69. }
  70. $scope.options.datum[undefined] = [];
  71. });
  72. };
  73. $scope.refresh();
  74. });