customers.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. 'use strict';
  2. angular.module('fehlerberichtApp')
  3. .controller('CustomersCtrl', function ($scope, $http) {
  4. var webservice = 'http://rbs06/fehlerbericht/db.php?';
  5. $scope.info = [];
  6. $scope.error = -1;
  7. $scope.domain = {
  8. 'aktiv': {
  9. '1': 'Aktiv',
  10. '0': 'Inaktiv'
  11. },
  12. 'system': [
  13. '?',
  14. 'Autosys',
  15. 'Autosys-Light',
  16. 'EDS',
  17. 'Filaks',
  18. 'GlobalCube',
  19. 'Light',
  20. 'Navision',
  21. 'Optima'
  22. ],
  23. 'woche': [
  24. 'Mo-Fr',
  25. 'Mo-Sa',
  26. 'Mo-So',
  27. 'Di-So'
  28. ],
  29. 'bundesland': {
  30. 'AT': 'Österreich',
  31. 'BW': 'Baden-Württemberg',
  32. 'BY': 'Bayern',
  33. 'BE': 'Berlin',
  34. 'BB': 'Brandenburg',
  35. 'HB': 'Bremen',
  36. 'HH': 'Hamburg',
  37. 'HE': 'Hessen',
  38. 'MV': 'Mecklenburg-Vorpommern',
  39. 'NI': 'Niedersachsen',
  40. 'NW': 'Nordrhein-Westfalen',
  41. 'RP': 'Rheinland-Pfalz',
  42. 'SL': 'Saarland',
  43. 'SN': 'Sachsen',
  44. 'ST': 'Sachsen-Anhalt',
  45. 'SH': 'Schleswig-Holstein',
  46. 'TH': 'Thüringen'
  47. }
  48. };
  49. $scope.kunden = [];
  50. $scope.current = {
  51. 'zeile' : {},
  52. 'fehler': {}
  53. };
  54. $scope.Filter = {
  55. 'aktiv': '1',
  56. 'kunde': '',
  57. 'system': ''
  58. };
  59. $scope.removeItem = function (index) {
  60. // Beispiel
  61. $scope.Bestellungen = $scope.Bestellungen.splice(index, 1);
  62. };
  63. $scope.refresh = function () {
  64. $http.get(webservice + 'a=kunden').success(function (data) {
  65. $scope.kunden = data;
  66. });
  67. };
  68. $scope.refresh();
  69. $scope.firstChar = function (t) {
  70. if (t === '') {
  71. return '?';
  72. }
  73. return t.substring(0, 1);
  74. };
  75. $scope.save = function () {
  76. $http.put(webservice + 'a=kunden', $scope.kunden).success(function (data) {
  77. $scope.kunden = data;
  78. });
  79. };
  80. });