customer orders don't show
customer orders don't show customer orders or anything just open clear window titled with "customer orders" i just used msi file how i can show all cutomer orders ?
Hi, I hope you have already found a solution. I'm unable to attend to issues currently, please have a look at https://github.com/ailakhdar/Store-POS Hopefully @ailakhdar maintains his copy better and is able t assist.
in pos.js find this function "getCustomerOrders" and replace it with this code. it will work
$.fn.getCustomerOrders = function () { $.get(api + "all", function (data) { // console.log("customer orders here: ", data) clearInterval(dotInterval); customerOrderList = data; customerOrderLocation.empty(); $(this).randerHoldOrders(customerOrderList, customerOrderLocation, 2); }); };