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