mirror of
https://github.com/complexcaresolutions/dak.c2s.git
synced 2026-03-17 18:23:42 +00:00
fix: add versicherung field to CaseUpdate schema
The field was editable in the frontend but missing from the backend CaseUpdate Pydantic schema, causing changes to be silently dropped. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
7e9373a6d0
commit
f8a8befb19
1 changed files with 1 additions and 0 deletions
|
|
@ -81,6 +81,7 @@ class CaseUpdate(BaseModel):
|
||||||
nachname: Optional[str] = None
|
nachname: Optional[str] = None
|
||||||
geburtsdatum: Optional[date] = None
|
geburtsdatum: Optional[date] = None
|
||||||
kvnr: Optional[str] = None
|
kvnr: Optional[str] = None
|
||||||
|
versicherung: Optional[str] = None
|
||||||
strasse: Optional[str] = None
|
strasse: Optional[str] = None
|
||||||
plz: Optional[str] = None
|
plz: Optional[str] = None
|
||||||
ort: Optional[str] = None
|
ort: Optional[str] = None
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue