feat(POS-003): completed feature

This commit is contained in:
chattie
2026-08-22 13:19:27 +02:00
parent 926add3c97
commit 7ce6465054
26 changed files with 880 additions and 19 deletions

View File

@@ -0,0 +1,11 @@
# POS-003 — Architect
## Feature
POS module skeleton: domain + repos + application use cases.
## Design
Domain layer: PosStore, PosTerminal, PosCashSession types + all errors. Ports: PosStoreRepository, PosTerminalRepository, PosCashSessionRepository interfaces.
Infrastructure: PgStoreRepository, PgTerminalRepository, PgPaymentMethodRepository, PgCashSessionRepository.
Application: ListStores, ListTerminals, GetPosConfig, OpenCashSession, CloseCashSession use cases.
Tests: unit tests for store listing + cash session open/close.
Wired into build-app.ts (repos in deps, no routes yet — covered by POS-004).