This repository has been archived by the owner on Jun 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/pilot' into dev
# Conflicts: # client/src/components/LocationFormGroup.vue # client/src/models/index.ts # client/src/models/risk-occupation.ts # client/src/views/RegisterPatient.vue
- Loading branch information
Showing
7 changed files
with
108 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import { PatientStatus2 } from '@/models/index' | ||
|
||
export interface CaseStatusItem { | ||
id: PatientStatus2; | ||
label: string; | ||
icon: string; | ||
} | ||
|
||
export const caseStatus: CaseStatusItem[] = [ | ||
{ | ||
id: 'REGISTERED', | ||
label: 'Registriert', | ||
icon: 'login', | ||
}, { | ||
id: 'CONTACT', | ||
label: 'Kontaktfall', | ||
icon: 'search', | ||
}, { | ||
id: 'SUSPECTED', | ||
label: 'Verdachtsfall', | ||
icon: 'search', | ||
}, { | ||
id: 'TEST_FINISHED_POSITIVE', | ||
label: 'Bestätigter Fall', | ||
icon: 'check', | ||
}, { | ||
id: 'TEST_FINISHED_NEGATIVE', | ||
label: 'Ausgeräumter Fall', | ||
icon: 'stop', | ||
}, { | ||
id: 'RECOVERED_WITH_EMISSION', | ||
label: 'Genesener Fall mit Ausscheidung', | ||
icon: 'logout', | ||
}, { | ||
id: 'RECOVERED_NO_EMISSION', | ||
label: 'Genesener Fall ohne Ausscheidung', | ||
icon: 'logout', | ||
}, { | ||
id: 'RECOVERED_NO_TEST', | ||
label: 'Genesener Fall ohne Nachweis', | ||
icon: 'logout', | ||
}, { | ||
id: 'PATIENT_DEAD', | ||
label: 'Verstorben', | ||
icon: 'cloud', | ||
}, | ||
{ | ||
id: 'QUARANTINE_MANDATED', | ||
label: 'Quarantäne angeordnet', | ||
icon: 'safety', | ||
}, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
server/src/main/resources/sample_data/createDepartmentOfHealth.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"institutionType": "DEPARTMENT_OF_HEALTH", | ||
"name": "Krankenhaus", | ||
"street": "Rhein-Straße", | ||
"houseNumber": "13a", | ||
"zip": "3454325", | ||
"city": "Köln", | ||
"email": "clinic@example.de", | ||
"name": "Gesundheitsamt", | ||
"street": "Hauptstrasse", | ||
"houseNumber": "10-12", | ||
"zip": "66117", | ||
"city": "Saarbrücken", | ||
"email": "healthagency@example.de", | ||
"phoneNumber": "43345", | ||
"comment": "this is a comment for the clinic", | ||
"comment": "this is a comment for the health agency", | ||
"id": "asdfa" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters