main.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. 'use strict';
  2. angular.module('pos')
  3. .controller('MainCtrl', function ($scope, $timeout, $http) {
  4. var webservice = 'api/?a=projects';
  5. $scope.getRandomHex = function (digits) {
  6. var rand = Math.random();
  7. return Math.floor(Date.now() / rand).toString(16).substring(2, 2 + digits);
  8. };
  9. $scope.projects = [];
  10. $scope.newProject = {
  11. 'ID': $scope.getRandomHex(8),
  12. 'Date': new Date(),
  13. 'Description': "Famta Flohmarkt",
  14. 'Count': 4,
  15. 'PointsOfSale': [
  16. ]
  17. };
  18. $scope.generateProject = function () {
  19. for (var i = 0; i < $scope.newProject.Count; i++) {
  20. $scope.newProject.PointsOfSale[i] = {
  21. 'ID': $scope.getRandomHex(6),
  22. 'Client': ""
  23. };
  24. }
  25. $timeout(function () {
  26. JsBarcode(".barcode").init();
  27. }, 300);
  28. };
  29. $scope.refresh = function () {
  30. $http.post(webservice)
  31. .then(function (response) {
  32. $scope.projects = response.data;
  33. });
  34. };
  35. $scope.refresh();
  36. });