Client: Filament/Vendor selects now work

This commit is contained in:
Donkie
2023-05-14 20:06:17 +02:00
parent 8e21cd2e12
commit 43919ac90e
14 changed files with 98 additions and 55 deletions

View File

@@ -0,0 +1,12 @@
interface ISpool {
id: string;
registered: string;
first_used?: string;
last_used?: string;
filament: IFilament;
remaining_weight?: number;
used_weight: number;
location?: string;
lot_nr?: string;
comment?: string;
}