changelog.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. (function () {
  2. 'use strict';
  3. angular.module('fehlerberichtApp')
  4. .controller('ChangelogCtrl', function ($scope, $http) {
  5. var webservice = 'http://rbs06:8090/fehlerbericht/db.php?';
  6. $scope.Typen = ["neu", "akt", "entf"];
  7. $scope.Status = {
  8. "Historie": [],
  9. "Liste": []
  10. };
  11. $scope.Filter = {
  12. "Konto_Nr": "",
  13. "Konto_Bezeichnung": "",
  14. "Konto_Art": "",
  15. "Datum": "",
  16. "Status": "",
  17. "Quelle": ""
  18. };
  19. $scope.Domaene = {
  20. "Konto_Nr": [],
  21. "Konto_Bezeichnung": [],
  22. "Konto_Art": ["GuV", "Bilanz"],
  23. "Datum": [],
  24. "Status": $scope.Typen,
  25. "Quelle": []
  26. };
  27. $scope.selectedDate = {"datum": "heute"};
  28. $scope.selectedField = "Konto_1";
  29. $http.get(webservice + "a=changelog&kunde=").success(function (data) {
  30. $scope.Status = data;
  31. $scope.selectedDate = $scope.Status.Historie[$scope.Status.Historie.length - 1];
  32. $scope.Status.Liste = _.sortBy($scope.Status.Liste, function (entry) {
  33. return entry.Konto_Nr;
  34. });
  35. $scope.Domaene.Datum = _.chain($scope.Status.Liste).pluck('Datum').unique().sort().value();
  36. $scope.Domaene.Quelle = _.chain($scope.Status.Liste).pluck('Quelle').unique().sort().value();
  37. });
  38. $scope.badge = function (typ) {
  39. if (typ === "neu") {
  40. return "label-success";
  41. }
  42. if (typ === "akt") {
  43. return "label-warning";
  44. }
  45. return "label-danger";
  46. };
  47. /**
  48. * @return {string}
  49. */
  50. $scope.Kontoart = function (art) {
  51. return (art === "1") ? "Bilanz" : "GuV";
  52. };
  53. /**
  54. * @return {string}
  55. */
  56. $scope.Seit = function (datum) {
  57. if (moment(datum, "DD.MM.YYYY").isSame(moment(), 'day')) {
  58. return "heute";
  59. }
  60. return moment(datum, "DD.MM.YYYY").from(moment().startOf('day'));
  61. };
  62. });
  63. })();