12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 'use strict';
- angular.module('pos')
- .controller('MainCtrl', function ($scope, $timeout) {
- var webservice = 'api/';
-
- $scope.getRandomHex = function (digits) {
- var rand = Math.random();
- return Math.floor(Date.now() / rand).toString(16).substring(2, 2 + digits);
- };
- $scope.projects = [
- {
- 'ID': "a47e09a1",
- 'Date': new Date('2016-10-10'),
- 'Description': "Famta Flohmarkt",
- 'Count': 3,
- 'PointsOfSale': [
- {
- 'ID': "32af92",
- 'Client': "192.168.2.3"
- }
- ]
- }
- ];
- $scope.newProject = {
- 'ID': $scope.getRandomHex(8),
- 'Date': new Date(),
- 'Description': "Famta Flohmarkt",
- 'Count': 4,
- 'PointsOfSale': [
- ]
- };
- $scope.generateProject = function () {
- for (var i = 0; i < $scope.newProject.Count; i++) {
- $scope.newProject.PointsOfSale[i] = {
- 'ID': $scope.getRandomHex(6),
- 'Client': ""
- };
- }
- $timeout(function () {
- JsBarcode(".barcode").init();
- }, 300);
- };
- });
|