app.js 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. angular.module('pos', ['ngRoute'])
  2. .directive('tabs', function () {
  3. return {
  4. restrict: 'A',
  5. transclude: true,
  6. scope: { style: "@tabs" },
  7. controller: [ "$scope", function ($scope) {
  8. $scope.panels = [];
  9. $scope.select = function (i) {
  10. angular.forEach($scope.panels, function (p) {
  11. p.selected = false;
  12. });
  13. $scope.panels[i].selected = true;
  14. };
  15. this.addPanel = function (panel) {
  16. if ($scope.panels.length === 0) {
  17. panel.selected = true;
  18. }
  19. $scope.panels.push(panel);
  20. };
  21. }],
  22. template: '<div class="tabbable">' +
  23. '<ul class="nav nav-{{style||\'pills\'}}">' +
  24. '<li ng-repeat="panel in panels" ng-class="{active:panel.selected}">' +
  25. '<a href="" ng-click="select($index)">{{panel.title}}</a>' +
  26. '</li>' +
  27. '</ul><br/>' +
  28. '<div class="tab-content" ng-transclude></div>' +
  29. '</div>',
  30. replace: true
  31. };
  32. })
  33. .directive('panel', function () {
  34. return {
  35. require: '^tabs',
  36. restrict: 'A',
  37. transclude: true,
  38. scope: { title: "@panel" },
  39. link: function (scope, element, attrs, tabsCtrl) {
  40. tabsCtrl.addPanel(scope);
  41. },
  42. template: '<div class="tab-panel" ng-show="selected" ng-transclude>' +
  43. '</div>',
  44. replace: true
  45. };
  46. })
  47. .directive('item', function() {
  48. return {
  49. require: 'ngModel',
  50. link: function(scope, element, attr, mCtrl) {
  51. function validItem(value) {
  52. if (value.match(/^\d{3}-\d{3}$/gi)) {
  53. mCtrl.$setValidity('validItem', true);
  54. } else {
  55. mCtrl.$setValidity('validItem', false);
  56. }
  57. return value;
  58. }
  59. mCtrl.$parsers.push(validItem);
  60. }
  61. };
  62. })
  63. .filter("euro", function () {
  64. return function (num) {
  65. if (num !== null || num === Number.NaN) {
  66. return parseFloat(num).toFixed(2).toString().replace(".", ",");
  67. }
  68. return "0,00";
  69. };
  70. })
  71. .filter("datum", function () {
  72. return function (d) {
  73. if (d !== null) {
  74. return moment(d).format("DD.MM.YYYY HH:mm:ss");
  75. }
  76. return "?";
  77. };
  78. })
  79. .filter('comma2decimal', [
  80. function() {
  81. return function(input) {
  82. var ret=(input)?input.toString().trim().replace(",","."):null;
  83. return parseFloat(ret);
  84. };
  85. }
  86. ])
  87. .filter('decimal2comma', [
  88. function() {
  89. return function(input) {
  90. var ret=(input)?input.toString().replace(".",","):null;
  91. if(ret){
  92. var decArr=ret.split(",");
  93. if(decArr.length>1){
  94. var dec=decArr[1].length;
  95. if(dec===1){ret+="0";}
  96. }
  97. }
  98. return ret;
  99. };
  100. }
  101. ])
  102. .directive('price', ['$filter',
  103. function($filter) {
  104. return {
  105. restrict:'A',
  106. require: 'ngModel',
  107. link: function(scope, element, attrs, ngModelController) {
  108. ngModelController.$parsers.push(function(data) {
  109. //convert data from view format to model format
  110. data=$filter('comma2decimal')(data);
  111. return data;
  112. });
  113. ngModelController.$formatters.push(function(data) {
  114. //convert data from model format to view format
  115. data=$filter('decimal2comma')(data);
  116. return data;
  117. });
  118. }
  119. };
  120. }
  121. ])
  122. .config(function ($routeProvider) {
  123. $routeProvider
  124. .when('/', {
  125. templateUrl: 'templates/main.html',
  126. controller: 'MainCtrl'
  127. })
  128. .when('/dashboard', {
  129. templateUrl: 'templates/dashboard.html',
  130. controller: 'DashboardCtrl'
  131. })
  132. .when('/invoice', {
  133. templateUrl: 'templates/invoice.html',
  134. controller: 'InvoiceCtrl'
  135. })
  136. .when('/pos/:id', {
  137. templateUrl: 'templates/pos.html',
  138. controller: 'PosCtrl'
  139. })
  140. .when('/seller', {
  141. templateUrl: 'templates/seller.html',
  142. controller: 'SellerCtrl'
  143. })
  144. .when('/templates/:offset', {
  145. templateUrl: 'templates/templates.html',
  146. controller: 'TemplatesCtrl'
  147. })
  148. .otherwise({
  149. redirectTo: '/'
  150. });
  151. });
  152. String.prototype.padLeft = function(char, length) {
  153. return char.repeat(Math.max(0, length - this.length)) + this;
  154. };
  155. moment.locale('de');