main.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. 'use strict';
  2. angular.module('pos')
  3. .controller('MainCtrl', function ($scope, $timeout) {
  4. var webservice = 'api/';
  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. {
  11. 'ID': "a47e09a1",
  12. 'Date': new Date('2016-10-10'),
  13. 'Description': "Famta Flohmarkt",
  14. 'Count': 3,
  15. 'PointsOfSale': [
  16. {
  17. 'ID': "32af92",
  18. 'Client': "192.168.2.3"
  19. }
  20. ]
  21. }
  22. ];
  23. $scope.newProject = {
  24. 'ID': $scope.getRandomHex(8),
  25. 'Date': new Date(),
  26. 'Description': "Famta Flohmarkt",
  27. 'Count': 4,
  28. 'PointsOfSale': [
  29. ]
  30. };
  31. $scope.generateProject = function () {
  32. for (var i = 0; i < $scope.newProject.Count; i++) {
  33. $scope.newProject.PointsOfSale[i] = {
  34. 'ID': $scope.getRandomHex(6),
  35. 'Client': ""
  36. };
  37. }
  38. $timeout(function () {
  39. JsBarcode(".barcode").init();
  40. }, 300);
  41. };
  42. });