templates.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. 'use strict';
  2. /**
  3. * @ngdoc function
  4. * @name kasseApp.controller:AboutCtrl
  5. * @description
  6. * # AboutCtrl
  7. * Controller of the kasseApp
  8. */
  9. angular.module('pos')
  10. .controller('TemplatesCtrl', function ($scope, $routeParams) {
  11. $scope.buttonShow = true;
  12. $scope.height = 55;
  13. $scope.margin = 20;
  14. $scope.marginTop = 10;
  15. $scope.offset = parseInt($routeParams.offset, 10);
  16. $scope.count = 50;
  17. // Ränder: TRBL 15 9 3 10
  18. $scope.sellers = _.map(_.range($scope.offset, $scope.offset+$scope.count), function (num) {
  19. return (num).toString().padLeft('0', 3);
  20. });
  21. $scope.rows = _.map(_.range(12), function (num) {
  22. return num * 4;
  23. });
  24. $scope.rows2 = _.range(10);
  25. $scope.cols = _.range(4);
  26. $scope.articles = _.map(_.range(3, 60), function (num) {
  27. return num.toString().padLeft('0', 3);
  28. });
  29. $scope.barcodeClick = function () {
  30. JsBarcode(".barcode").init();
  31. $scope.buttonShow = false;
  32. };
  33. });