Sprint 8: Material anlegen/bearbeiten im Admin-Portal
CI / backend-tests (push) Successful in 53s
CI / frontend-build (push) Successful in 1m51s

PATCH /materialien/{id} existierte im Backend bereits (Prompt 07), im
Frontend bisher nicht angebunden. Formular dient für Anlage UND Bearbeitung
(Klick auf "Bearbeiten" befüllt dasselbe Formular).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01L85hmKbvX7Cqkq47KnQhFt
This commit is contained in:
2026-09-04 00:40:37 +02:00
co-authored by Claude Sonnet 5
parent e3ed5e0f28
commit 08b10c7c37
2 changed files with 160 additions and 7 deletions
+7
View File
@@ -44,8 +44,15 @@ export interface Kontrollposition {
export interface Material {
id: number;
name: string;
artikelnummer: string | null;
einheit: string;
materialtyp: string;
kategorie_id: number | null;
hersteller: string | null;
beschreibung: string | null;
code: string | null;
warnzeitraum_tage: number | null;
aktiv: boolean;
}
export interface Standort {