config.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. 'use strict';
  2. angular.module('fehlerberichtApp')
  3. .controller('ConfigCtrl', function ($scope, $http, $routeParams) {
  4. var webservice = 'http://rbs06/fehlerbericht/db.php?';
  5. $scope.current = {
  6. 'kunde': $routeParams.customer,
  7. 'datum': $routeParams.date
  8. };
  9. $scope.data = {};
  10. $scope.domain = {};
  11. $scope.filter = {};
  12. $scope.options = {
  13. 'kunde': [],
  14. 'datum': {}
  15. };
  16. $scope.dateFormat = function (date) {
  17. var d = moment(date, 'YYYY-MM-DD');
  18. if (d.isValid()) {
  19. return d.format('dd, DD.MM.YYYY');
  20. }
  21. return date;
  22. };
  23. $scope.refresh = function () {
  24. $scope.data = {};
  25. $http.get(webservice + 'a=config&kunde=' + $scope.current.kunde + '&datum=' + $scope.current.datum).success(function (data) {
  26. $scope.options.datum = data.options;
  27. $scope.options.datum[undefined] = [];
  28. $scope.options.kunde = _.keys(data.options);
  29. if (data.current) {
  30. $scope.current.datum = data.current.datum;
  31. $scope.options.tabelle = _.keys(data.current.info);
  32. $scope.current.tabelle = _.first($scope.options.tabelle);
  33. $scope.data = data.current.info;
  34. _.each($scope.data, function (table, t) {
  35. $scope.domain[t] = {};
  36. $scope.filter[t] = {};
  37. _.each(table[0], function (col, k) {
  38. $scope.domain[t][k] = _.uniq(_.pluck(table, k));
  39. $scope.filter[t][k] = '';
  40. });
  41. });
  42. }
  43. $scope.options.datum[undefined] = [];
  44. });
  45. };
  46. $scope.refresh();
  47. });