checkout.js 15 KB

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