mirror of
https://github.com/s-frick/effigenix.git
synced 2026-03-28 19:10:22 +01:00
feat(tui): Bestandsbewegungen und Produktionsaufträge anbinden
- StockMovement: API-Client, Hook, List/Detail/Record-Screens mit Typ-Filter - ProductionOrder: list/getById/start im API-Client, List/Detail-Screens mit Freigabe- und Start-Aktion - Inventar-Menü um Bestandsbewegungen erweitert - Produktionsmenü zeigt jetzt Auftragsliste statt direkt Create - OpenAPI-Typen regeneriert (StockMovementResponse, StartProductionOrderRequest, batchId in ProductionOrderResponse)
This commit is contained in:
parent
0474b5fa93
commit
7d721f9ef0
18 changed files with 1279 additions and 9 deletions
|
|
@ -39,6 +39,9 @@ export type Screen =
|
|||
| 'stock-list'
|
||||
| 'stock-detail'
|
||||
| 'stock-create'
|
||||
| 'stock-movement-list'
|
||||
| 'stock-movement-detail'
|
||||
| 'stock-movement-record'
|
||||
// Produktion
|
||||
| 'production-menu'
|
||||
| 'recipe-list'
|
||||
|
|
@ -51,7 +54,9 @@ export type Screen =
|
|||
| 'batch-plan'
|
||||
| 'batch-record-consumption'
|
||||
| 'batch-complete'
|
||||
| 'production-order-list'
|
||||
| 'production-order-create'
|
||||
| 'production-order-detail'
|
||||
| 'stock-reserve';
|
||||
|
||||
interface NavigationState {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue