Stock Lookup Tool¶
A self-contained offline HTML tool for searching LEMO stock by item code from a CSV export.
File: /home/dini/Documents/lemo/Stock review V2.1.html
Features¶
- Upload CSV via Admin tab, stored in IndexedDB
- Live fuzzy search in Lookup tab (200ms debounce)
- Results limited to 50, sorted by available quantity
- Clear All Data button in Admin tab
- All client-side, no server, works offline
Technical Notes¶
- Hardcoded column indices (0, 5, 6, 8, 9) — needs header-mapping when CSV layout is known
- Replaced naive
line.split(",")withparseCSVLine()(handles quoted commas) - Keyboard accessibility on tabs
- All client-side, no server, works offline
Changelog (V2.1)¶
- Replaced
line.split(",")withparseCSVLine()for quoted comma handling - Removed highlight feature (dead code)
- Added 200ms debounce on search input
- Added try/catch error handling on upload and search
- Added keyboard accessibility on tabs
- Added Clear All Data button in Admin tab
- Saved in
Documents/lemo/(outsideattachments/)
Related¶
- [[Index]]
- [[JBS LEMO Shopify Storefront]]