inventory2

This commit is contained in:
2026-03-14 21:31:40 -05:00
parent 472c36915c
commit 65269f172f
4 changed files with 103 additions and 15 deletions

View File

@@ -18,6 +18,7 @@ This repository implements the platform foundation milestone:
3. Add Prisma models and migrations for all persisted schema changes.
4. Keep uploaded files on disk under `/app/data/uploads`; never store blobs in SQLite.
5. Reuse shared DTOs and permission keys from the `shared` package.
6. Any UI that looks up items by SKU or item name must use a searchable picker/autocomplete, not a long dropdown.
## Operational notes
@@ -27,6 +28,7 @@ This repository implements the platform foundation milestone:
- Prefer Node 22 locally when running Prisma migration commands to match the Docker runtime.
- Branding defaults live in the frontend theme token layer and are overridden by the persisted company profile.
- Back up the whole `/app/data` volume to capture both the database and attachments.
- Treat searchable SKU lookup as a standing UX requirement for inventory, BOM, sales, purchasing, and manufacturing flows.
## Next roadmap candidates