As a user I want to see a queue of documents that are missing metadata so I can enrich them efficiently after a scanning session #67
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Background
After a bulk upload session (see issue #X — drop zone), the user has a pile of documents with no date, sender, or receivers. They need a focused, low-friction way to work through them one by one without having to hunt for them in the document list.
User Journey
After uploading, the user sees a prominent "Needs metadata" section on the home page showing how many documents are still incomplete (no date, no sender, no receivers). Clicking it opens an enrichment view: the document's PDF preview is shown on the left (or top on mobile), and a compact metadata form on the right. The user fills in what they know — title, date, sender, receiver — and presses Save (or hits Enter). The system automatically advances to the next incomplete document. A progress indicator shows "3 of 12 remaining". When the queue is empty the section disappears from the home page.
The user can skip a document (leave it incomplete) and come back later.
E2E Scenarios
Implementation notes
documentDateAND nosenderAND noreceivers.GET /api/documents/incomplete-countor by filtering the existing search endpoint.PdfViewer/DocumentViewercomponent.Depends on / pairs well with: #66 (bulk upload drop zone — the primary way documents enter the queue)