pos.js 14 KB

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