mirror of
https://github.com/s-frick/effigenix.git
synced 2026-03-28 19:10:22 +01:00
feat(tui): Produktionschargen und Bestandsverwaltung in TUI einbauen
Chargen: Liste mit Statusfilter, Planen, Starten, Verbrauch erfassen, Abschließen und Stornieren. Bestände: Liste, Anlegen, Detailansicht mit Chargen sperren/entsperren/entfernen. Types, API-Client, Hooks, Navigation und Screens für beide Bounded Contexts vollständig ergänzt.
This commit is contained in:
parent
b2b3b59ce9
commit
5fe0dfc139
21 changed files with 2385 additions and 31 deletions
|
|
@ -35,13 +35,21 @@ export type Screen =
|
|||
| 'storage-location-detail'
|
||||
| 'stock-batch-entry'
|
||||
| 'stock-add-batch'
|
||||
| 'stock-list'
|
||||
| 'stock-detail'
|
||||
| 'stock-create'
|
||||
// Produktion
|
||||
| 'production-menu'
|
||||
| 'recipe-list'
|
||||
| 'recipe-create'
|
||||
| 'recipe-detail'
|
||||
| 'recipe-add-production-step'
|
||||
| 'recipe-add-ingredient';
|
||||
| 'recipe-add-ingredient'
|
||||
| 'batch-list'
|
||||
| 'batch-detail'
|
||||
| 'batch-plan'
|
||||
| 'batch-record-consumption'
|
||||
| 'batch-complete';
|
||||
|
||||
interface NavigationState {
|
||||
current: Screen;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue