dashboard.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. 'use strict';
  2. angular.module('pos')
  3. .controller('DashboardCtrl', function ($scope, $routeParams, $http, $timeout, $interval) {
  4. var webservice = 'api/?a=pos';
  5. $scope.postParams = {
  6. 'project_id': "1",
  7. 'pos_id': 0,
  8. 'cashier': window.localStorage.getItem("cashier"),
  9. 'token': window.localStorage.getItem("token"),
  10. 'active': 1,
  11. 'disabled': 0
  12. };
  13. var postParams = $scope.postParams;
  14. $scope.posList = _.range(0, 9);
  15. $scope.filterInvoices = function (pos) {
  16. if (pos == 0) return $scope.invoices;
  17. return _.filter($scope.invoices, function (e) { return e.pos_id == pos; });
  18. };
  19. $scope.lineTemplate = function () {
  20. if ($scope.currentInvoice.last_line_number === undefined) {
  21. $scope.currentInvoice.last_line_number = parseInt($scope.currentInvoice.details[0].line_number, 10);
  22. }
  23. $scope.currentInvoice.last_line_number += 1;
  24. return {
  25. 'line_number': $scope.currentInvoice.last_line_number,
  26. 'item': "",
  27. 'seller_id': "",
  28. 'item_id': "",
  29. 'price': 0
  30. };
  31. };
  32. $scope.invoiceTemplate = function () {
  33. return {
  34. 'invoice_number': "",
  35. 'project_id': $scope.postParams.project_id,
  36. 'pos_id': $scope.postParams.pos_id,
  37. 'invoice_date': moment(),
  38. 'cashier': $scope.postParams.cashier,
  39. 'last_line_number': 1,
  40. 'line_count': 0,
  41. 'valid': false,
  42. 'total': 0.0,
  43. 'paid': 0.0,
  44. 'details': [
  45. {
  46. 'line_number': 1,
  47. 'item': "",
  48. 'seller_id': "",
  49. 'item_id': "",
  50. 'price': 0.0
  51. }
  52. ]
  53. };
  54. };
  55. var successSound = new Audio("sounds/success.wav");
  56. var errorSound = new Audio("sounds/error.wav");
  57. $scope.warning = 0;
  58. $scope.warningInfo = [
  59. "",
  60. "Dieses Etikett wurde bereits gescannt",
  61. "Etiketten-Nummer ungültig",
  62. "Preis ungültig"
  63. ];
  64. $scope.currentLine = 0;
  65. $scope.currentLineType = '.item';
  66. $scope.currentInvoice = $scope.invoiceTemplate();
  67. $scope.showCurrentInvoice = false;
  68. $scope.offlineInvoices = JSON.parse(window.localStorage.getItem("offlineInvoices"));
  69. $scope.invoices = [];
  70. $scope.soldItems = [];
  71. $scope.total = function (pos) {
  72. return _.reduce($scope.filterInvoices(pos), function (sum, i) { return sum + parseFloat(i.total); }, 0);
  73. };
  74. $scope.invoiceLineCount = function () {
  75. return $scope.currentInvoice.details.length;
  76. };
  77. $scope.invoiceTotal = function () {
  78. return _.reduce($scope.currentInvoice.details, function (sum, d) { return sum + parseFloat(d.price); }, 0);
  79. };
  80. $scope.addItem = function () {
  81. $scope.currentInvoice.details.unshift($scope.lineTemplate());
  82. };
  83. $scope.removeItem = function (item) {
  84. $scope.currentInvoice.details = _.without($scope.currentInvoice.details, item);
  85. };
  86. $scope.currentChange = function () {
  87. if ($scope.currentInvoice.paid === 0.0
  88. || $scope.currentInvoice.paid == ""
  89. || $scope.currentInvoice.paid == Number.NaN) {
  90. return 0.0;
  91. }
  92. $scope.currentInvoice.total = $scope.invoiceTotal();
  93. return $scope.currentInvoice.paid - $scope.currentInvoice.total;
  94. };
  95. $scope.getInvoiceByNumber = function (invoiceNumber) {
  96. return _.find($scope.invoices, function (e) { return e.invoice_number === invoiceNumber; });
  97. };
  98. $scope.editInvoice = function (invoiceNumber) {
  99. $scope.currentInvoice = $scope.getInvoiceByNumber(invoiceNumber);
  100. $scope.selectItem(0);
  101. };
  102. $scope.jumpEvent = function (event) {
  103. var key = String.fromCharCode(event.which);
  104. switch (key) {
  105. case '*':
  106. $scope.selectPrice($scope.currentLine+1);
  107. return false;
  108. case '/':
  109. $('#paid').select();
  110. $scope.validate();
  111. return false;
  112. case '+':
  113. $scope.selectItem(0);
  114. return false;
  115. }
  116. return true;
  117. };
  118. $("body").on('keypress', $scope.jumpEvent);
  119. $scope.lineNumberComparator = function (v1, v2) {
  120. return (parseInt(v1, 10) < parseInt(v2, 10)) ? -1 : 1;
  121. };
  122. $scope.keyPressModal = function (e) {
  123. if (e.which === 13) {
  124. e.preventDefault();
  125. $(".modal").modal("hide");
  126. $scope.selectItem();
  127. }
  128. return true;
  129. };
  130. $scope.showWarning = function (num) {
  131. $scope.warning = num;
  132. $('#warningModal').modal('show');
  133. errorSound.play();
  134. };
  135. $scope.selectItem = function (index, itemType) {
  136. if (index !== undefined) {
  137. $scope.currentLine = index;
  138. }
  139. if (itemType !== undefined) {
  140. $scope.currentLineType = itemType;
  141. } else {
  142. $scope.currentLineType = '.item';
  143. }
  144. $timeout(function () {
  145. $($scope.currentLineType)[$scope.currentLine].select();
  146. }, 300, true);
  147. };
  148. $scope.selectPrice = function (index) {
  149. $scope.selectItem(index, '.price');
  150. };
  151. $scope.currentSoldItems = function (index) {
  152. var list = _.pluck($scope.currentInvoice.details, 'item');
  153. var needle = list[index];
  154. list[index] = "";
  155. for (var i = 0; i < list.length; i++) {
  156. if (list[i] === needle) {
  157. return i;
  158. }
  159. }
  160. return index;
  161. };
  162. $scope.keyPressItem = function (e, i) {
  163. if (e.which === 13) {
  164. e.preventDefault();
  165. var currentItem = $scope.currentInvoice.details[i];
  166. if ($scope.currentLine !== i && currentItem.item === "") {
  167. return true;
  168. }
  169. if (!currentItem.item.match(/^\d{3}-\d{3}$/gi)) {
  170. $scope.showWarning(2);
  171. } else if ($scope.currentInvoice.invoice_number == 0 && _.contains($scope.soldItems, currentItem.item)) {
  172. $scope.showWarning(1);
  173. } else if ($scope.currentSoldItems(i) !== i) {
  174. errorSound.play();
  175. $scope.selectPrice($scope.currentSoldItems(i));
  176. currentItem.item = "";
  177. return false;
  178. } else {
  179. successSound.play();
  180. $scope.selectPrice(i);
  181. return true;
  182. }
  183. $scope.selectItem(i);
  184. return false;
  185. }
  186. var key = String.fromCharCode(e.which);
  187. if (key == '/') {
  188. e.preventDefault();
  189. }
  190. return true;
  191. };
  192. $scope.keyPressPrice = function (e, i) {
  193. if (e.which === 13) {
  194. var currentPrice = $scope.currentInvoice.details[i].price;
  195. if (!currentPrice.toString().match(/^\d+(\.\d\d?)?$/gi) || currentPrice <= 0) {
  196. errorSound.play();
  197. e.preventDefault();
  198. $scope.selectPrice(i);
  199. return false;
  200. }
  201. if ($scope.currentInvoice.details[0].item !== "") {
  202. $scope.addItem();
  203. }
  204. successSound.play();
  205. $scope.selectItem(0);
  206. return false;
  207. }
  208. var key = String.fromCharCode(e.which);
  209. if (key == '/') {
  210. e.preventDefault();
  211. }
  212. return true;
  213. };
  214. $scope.keyPressPaid = function (e) {
  215. $scope.validate();
  216. if (e.which === 13) {
  217. $scope.checkOut();
  218. }
  219. };
  220. $scope.validate = function () {
  221. var i = 0, item;
  222. for (i = $scope.currentInvoice.details.length - 1; i >= 0; i--) {
  223. if ($scope.currentInvoice.details[i].price == 0 && $scope.currentInvoice.details[i].item === "") {
  224. $scope.removeItem($scope.currentInvoice.details[i]);
  225. break;
  226. }
  227. item = $scope.currentInvoice.details[i];
  228. if (!item.price.toString().match(/^\d+(\.\d\d?)?$/gi) || item.price <= 0) {
  229. $scope.selectPrice(i);
  230. errorSound.play();
  231. $scope.currentInvoice.valid = false;
  232. return false;
  233. }
  234. if (item.item === "" || !item.item.match(/^\d{3}-\d{3}$/gi)
  235. || ($scope.currentInvoice.invoice_number == 0 && _.contains($scope.soldItems, item.item))) {
  236. $scope.selectItem(i);
  237. errorSound.play();
  238. $scope.currentInvoice.valid = false;
  239. return false;
  240. }
  241. item.seller_id = item.item.substring(0, 3);
  242. item.item_id = item.item.substring(4, 7);
  243. }
  244. if ($scope.currentInvoice.details.length === 0) {
  245. $scope.addItem();
  246. $scope.selectItem(0);
  247. errorSound.play();
  248. $scope.currentInvoice.valid = false;
  249. return false;
  250. }
  251. $scope.currentInvoice.cashier = $scope.postParams.cashier;
  252. $scope.currentInvoice.line_count = $scope.currentInvoice.details.length;
  253. $scope.currentInvoice.invoice_date = moment();
  254. $scope.currentInvoice.valid = true;
  255. return true;
  256. };
  257. $scope.checkOut = function () {
  258. if (isNaN($scope.currentInvoice.paid) || $scope.currentInvoice.paid == '' || $scope.currentInvoice.paid == 0) {
  259. $scope.currentInvoice.paid = $scope.currentInvoice.total;
  260. }
  261. $scope.saveInvoice($scope.currentInvoice);
  262. window.localStorage.setItem("cashier", $scope.postParams.cashier);
  263. $scope.currentInvoice = $scope.invoiceTemplate();
  264. $scope.selectItem(0);
  265. };
  266. if ($scope.offlineInvoices === null) {
  267. $scope.offlineInvoices = [];
  268. }
  269. if ($scope.postParams.token === null) {
  270. $scope.postParams.token = 0;
  271. }
  272. $scope.setActive = function () {
  273. $scope.postParams.active = 1;
  274. $scope.refreshStatus();
  275. };
  276. $scope.setInactive = function () {
  277. $scope.postParams.active = 0;
  278. $scope.refreshStatus();
  279. };
  280. $scope.closePos = function () {
  281. $scope.postParams.disabled = 1;
  282. $scope.refreshStatus();
  283. };
  284. $scope.refreshStatus = function () {
  285. $http.post(webservice + '_token', postParams).then(function (response) {
  286. $scope.postParams.token = response.data.token;
  287. window.localStorage.setItem("token", $scope.postParams.token);
  288. $scope.postParams.active = response.data.active;
  289. $scope.postParams.disabled = response.data.disabled;
  290. });
  291. };
  292. $scope.saveInvoice = function (invoice) {
  293. $http.post(webservice + '_invoices', { 'params': $scope.postParams, 'invoice': invoice })
  294. .then(function (response) {
  295. if (response.data.invoice_number !== undefined) {
  296. $scope.offlineInvoices = _.without($scope.offlineInvoices, invoice);
  297. $scope.invoices[$scope.invoices.length] = response.data;
  298. } else if (!_.contains($scope.offlineInvoices, invoice)) {
  299. $scope.offlineInvoices.push(invoice);
  300. }
  301. window.localStorage.setItem("offlineInvoices", JSON.stringify($scope.offlineInvoices));
  302. });
  303. };
  304. $scope.loadInvoice = function (invoiceNumber) {
  305. $http.post(webservice + '_invoices', { 'params': $scope.postParams, 'invoice_number': invoiceNumber })
  306. .then(function (response) {
  307. if (response.data.invoice_number !== undefined) {
  308. $scope.currentInvoice = response.data;
  309. $scope.showCurrentInvoice = true;
  310. $scope.selectItem(0);
  311. }
  312. });
  313. };
  314. $scope.printInvoice = function (invoiceNumber) {
  315. $http.post(webservice + '_print', { 'params': $scope.postParams, 'invoice_number': invoiceNumber })
  316. .then(function (response) {
  317. if (response.data.invoice_number !== undefined) {
  318. var invoice = $scope.getInvoiceByNumber(invoiceNumber);
  319. invoice.printed = 1;
  320. }
  321. });
  322. };
  323. $scope.refresh = function () {
  324. for (var i = 0; i < $scope.offlineInvoices.length; i++) {
  325. $timeout($scope.saveInvoice($scope.offlineInvoices[i]), 3000 * i);
  326. }
  327. $http.post(webservice + '_infos', $scope.postParams)
  328. .then(function (response) {
  329. //$scope.soldItems = response.data.items;
  330. $scope.invoices = response.data.invoices;
  331. });
  332. };
  333. $interval($scope.refresh, 60 * 1000);
  334. $scope.refreshStatus();
  335. $scope.refresh();
  336. });