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:
parent
58ed0a3810
commit
a0ebf46329
28 changed files with 798 additions and 47 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue