app.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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("datum2", function () {
  80. return function (d) {
  81. if (d !== null) {
  82. return moment(d).format("DD.MM.YYYY");
  83. }
  84. return "?";
  85. };
  86. })
  87. .filter('comma2decimal', [
  88. function() {
  89. return function(input) {
  90. var ret=(input)?input.toString().trim().replace(",","."):null;
  91. return parseFloat(ret);
  92. };
  93. }
  94. ])
  95. .filter('decimal2comma', [
  96. function() {
  97. return function(input) {
  98. var ret=(input)?input.toString().replace(".",","):null;
  99. if(ret){
  100. var decArr=ret.split(",");
  101. if(decArr.length>1){
  102. var dec=decArr[1].length;
  103. if(dec===1){ret+="0";}
  104. }
  105. }
  106. return ret;
  107. };
  108. }
  109. ])
  110. .directive('price', ['$filter',
  111. function($filter) {
  112. return {
  113. restrict:'A',
  114. require: 'ngModel',
  115. link: function(scope, element, attrs, ngModelController) {
  116. ngModelController.$parsers.push(function(data) {
  117. //convert data from view format to model format
  118. data=$filter('comma2decimal')(data);
  119. return data;
  120. });
  121. ngModelController.$formatters.push(function(data) {
  122. //convert data from model format to view format
  123. data=$filter('decimal2comma')(data);
  124. return data;
  125. });
  126. }
  127. };
  128. }
  129. ])
  130. .config(function ($routeProvider) {
  131. $routeProvider
  132. .when('/', {
  133. templateUrl: 'templates/main.html',
  134. controller: 'MainCtrl'
  135. })
  136. .when('/checkout', {
  137. templateUrl: 'templates/checkout.html',
  138. controller: 'CheckoutCtrl'
  139. })
  140. .when('/dashboard', {
  141. templateUrl: 'templates/dashboard.html',
  142. controller: 'DashboardCtrl'
  143. })
  144. .when('/invoice', {
  145. templateUrl: 'templates/invoice.html',
  146. controller: 'InvoiceCtrl'
  147. })
  148. .when('/pos/:id', {
  149. templateUrl: 'templates/pos.html',
  150. controller: 'PosCtrl'
  151. })
  152. .when('/seller', {
  153. templateUrl: 'templates/seller.html',
  154. controller: 'SellerCtrl'
  155. })
  156. .when('/templates/:offset', {
  157. templateUrl: 'templates/templates.html',
  158. controller: 'TemplatesCtrl'
  159. })
  160. .otherwise({
  161. redirectTo: '/'
  162. });
  163. });
  164. String.prototype.padLeft = function(char, length) {
  165. return char.repeat(Math.max(0, length - this.length)) + this;
  166. };
  167. moment.locale('de');