1
0
Fork 0
mirror of https://github.com/s-frick/effigenix.git synced 2026-03-28 13:49:36 +01:00

feat(inventory): Inventur abbrechen und nach Status filtern (US-6.4)

Ermöglicht das Abbrechen von Inventuren (OPEN/COUNTING → CANCELLED) mit
Pflicht-Begründung sowie das Filtern der Inventurliste nach Status.
This commit is contained in:
Sebastian Frick 2026-03-19 11:39:56 +01:00
parent 58ed0a3810
commit a0ebf46329
28 changed files with 798 additions and 47 deletions

View file

@ -20,6 +20,7 @@ export interface InventoryCountDTO {
countDate: string;
initiatedBy: string;
completedBy: string | null;
cancellationReason: string | null;
status: InventoryCountStatus;
createdAt: string;
countItems: CountItemDTO[];
@ -34,3 +35,7 @@ export interface RecordCountItemRequest {
actualQuantityAmount: string;
actualQuantityUnit: string;
}
export interface CancelInventoryCountRequest {
reason: string;
}