pos.js 13 KB

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