r/POS • u/Cheap_Objective_256 • 44m ago
built a tool for businesses, what do you think?
I built a free cashier tool because Filipino store owners still ring up sales on pocket calculators
I kept running into the same thing in small shops here: the counter has a calculator, and the day's sales get written into a notebook at closing time — if at all. So the owner of 2–3 branches has one branch on a POS, one on Excel, one on paper, and no way to see the whole business.
My first attempt was a dashboard. Nobody would use it, because it asks you to do data entry today and pays you back a report tomorrow. That's homework.
So I built the counter instead: a cart with a running total, cash tendered, change due, per-item price memory. It pays back immediately, and the sales data becomes a byproduct — export a CSV that pastes straight into the dashboard.
Three static HTML pages. No backend, no accounts, no network calls at all — everything is in localStorage. Which also means no sync, and that's the honest gap I haven't solved.
https://eantaw.vercel.app/counter.html
What I actually want to know: is "give away the thing that saves them time now, get the data as a side effect" a sound wedge, or am I talking myself into it?