mirror of
https://github.com/s-frick/effigenix.git
synced 2026-03-28 13:59:36 +01:00
feat(tui): Edit-Screen für Lagerort-Bearbeitung (Name, Temperaturbereich)
StorageLocationEditScreen mit Formular für Name und Temperaturbereich. StorageType wird als immutable angezeigt. Erreichbar über [Bearbeiten] im DetailScreen. Vervollständigt Story 1.2 im Frontend.
This commit is contained in:
parent
614f3ece30
commit
5020df5d93
6 changed files with 192 additions and 4 deletions
|
|
@ -36,6 +36,7 @@ import { InventoryMenu } from './components/inventory/InventoryMenu.js';
|
|||
import { StorageLocationListScreen } from './components/inventory/StorageLocationListScreen.js';
|
||||
import { StorageLocationCreateScreen } from './components/inventory/StorageLocationCreateScreen.js';
|
||||
import { StorageLocationDetailScreen } from './components/inventory/StorageLocationDetailScreen.js';
|
||||
import { StorageLocationEditScreen } from './components/inventory/StorageLocationEditScreen.js';
|
||||
import { StockBatchEntryScreen } from './components/inventory/StockBatchEntryScreen.js';
|
||||
import { AddBatchScreen } from './components/inventory/AddBatchScreen.js';
|
||||
// Produktion
|
||||
|
|
@ -114,6 +115,7 @@ function ScreenRouter() {
|
|||
{current === 'storage-location-list' && <StorageLocationListScreen />}
|
||||
{current === 'storage-location-create' && <StorageLocationCreateScreen />}
|
||||
{current === 'storage-location-detail' && <StorageLocationDetailScreen />}
|
||||
{current === 'storage-location-edit' && <StorageLocationEditScreen />}
|
||||
{current === 'stock-batch-entry' && <StockBatchEntryScreen />}
|
||||
{current === 'stock-add-batch' && <AddBatchScreen />}
|
||||
{current === 'stock-list' && <StockListScreen />}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue