Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
GesetzApp
Please create a React-JS application for the GesetzModule. The application has to offer the following views for the user interface: 1. BehandlungsfallView 2. BehandlungsvertragView 3. GesetzView 4. PatientView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The BehandlungsfallView must contain the following fields: - name: Beginn type: DATE - name: DiagnoseText type: STRING - name: EmpfehlungArztbesuch type: BOOL - name: Ende type: DATE - name: Heilpraktiker type: Heilpraktiker - name: Infektionskrankheit type: BOOL - name: MeldepflichtigeKrankheit type: BOOL - name: Notizen type: STRING - name: Patient type: Patient The data source for the [Heilpraktiker] select control should be loaded from the relative URL: "/PersonService/heilpraktiker" (HTTP-GET) The data source for the [Patient] select control should be loaded from the relative URL: "/GesetzService/patient" (HTTP-GET) An existing Behandlungsfall entity should be loaded from the relative URL: "/GesetzService/behandlungsfall/{id}" (HTTP-GET) If a new Behandlungsfall entity has been created, the new entity should be posted to the relative URL: "/GesetzService/behandlungsfall" (HTTP-POST) If an existing Behandlungsfall entity has been updated, the modified entity should be sent to the relative URL: "/GesetzService/behandlungsfall/{id}" (HTTP-PUT) If an existing Behandlungsfall entity has to be deleted, the following relative URL should be called: "/GesetzService/behandlungsfall/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BehandlungsfallMethode columns: - column: Notizen - column: Behandlungsfall - column: Behandlungsmethode - column: AnzahlSitzungen The table should have the title "BehandlungsfallMethodes" und the data must be loaded from the server with the following relative URL: "/BehandlungsmethodeService/behandlungsfallmethode/behandlungsfall/{id}" Add a HTML table to the view with the following Behandlungsvertrag columns: - column: NutztGebuehrenverzeichnis - column: DatumBeendigung - column: Gesetz - column: NutztGOAEAnalog - column: DatumUnterschrift - column: Behandlungsfall - column: Honorarvereinbarung - column: UeberschreitetGebuehrenrahmen - column: Vertragstext - column: Vertragsart The table should have the title "Behandlungsvertrags" und the data must be loaded from the server with the following relative URL: "/GesetzService/behandlungsvertrag/behandlungsfall/{id}" 2. The BehandlungsvertragView must contain the following fields: - name: Behandlungsfall type: Behandlungsfall - name: DatumBeendigung type: DATE - name: DatumUnterschrift type: DATE - name: Gesetz type: Gesetz - name: Honorarvereinbarung type: STRING - name: NutztGebuehrenverzeichnis type: BOOL - name: NutztGOAEAnalog type: BOOL - name: UeberschreitetGebuehrenrahmen type: BOOL - name: Vertragsart type: Vertragsart - name: Vertragstext type: STRING The data source for the [Behandlungsfall] select control should be loaded from the relative URL: "/GesetzService/behandlungsfall" (HTTP-GET) The data source for the [Vertragsart] select control should be loaded from the relative URL: "/PruefungService/vertragsart" (HTTP-GET) The data source for the [Gesetz] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) An existing Behandlungsvertrag entity should be loaded from the relative URL: "/GesetzService/behandlungsvertrag/{id}" (HTTP-GET) If a new Behandlungsvertrag entity has been created, the new entity should be posted to the relative URL: "/GesetzService/behandlungsvertrag" (HTTP-POST) If an existing Behandlungsvertrag entity has been updated, the modified entity should be sent to the relative URL: "/GesetzService/behandlungsvertrag/{id}" (HTTP-PUT) If an existing Behandlungsvertrag entity has to be deleted, the following relative URL should be called: "/GesetzService/behandlungsvertrag/{id}" (HTTP-DELETE) 3. The GesetzView must contain the following fields: - name: Abkuerzung type: STRING - name: AmtlicherTitel type: STRING - name: Beschreibung type: STRING - name: DatumLetzteAenderung type: DATE - name: DatumVerkuendung type: DATE - name: Gesetzesart type: STRING - name: Kurztitel type: STRING - name: Land type: Land - name: Zitat type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Gesetz entity should be loaded from the relative URL: "/GesetzService/gesetz/{id}" (HTTP-GET) If a new Gesetz entity has been created, the new entity should be posted to the relative URL: "/GesetzService/gesetz" (HTTP-POST) If an existing Gesetz entity has been updated, the modified entity should be sent to the relative URL: "/GesetzService/gesetz/{id}" (HTTP-PUT) If an existing Gesetz entity has to be deleted, the following relative URL should be called: "/GesetzService/gesetz/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Erlaubnis columns: - column: Ausstellungsdatum - column: Erlaubnistyp - column: Land - column: Ablaufdatum - column: Gesetz - column: Hinweise - column: Behoerde - column: Person - column: Widerrufsdatum - column: IstWiderrufen - column: Beruf - column: Sektoralerlaubnisart - column: Erlaubnisnummer The table should have the title "Erlaubniss" und the data must be loaded from the server with the following relative URL: "/LandService/erlaubnis/gesetz/{id}" Add a HTML table to the view with the following Pruefung columns: - column: MuendlichErforderlich - column: Name - column: MaxVersuche - column: SchriftlichErforderlich - column: Land - column: Behoerde - column: Beschreibung - column: Beruf - column: Mindestpunktzahl - column: Gesetz The table should have the title "Pruefungs" und the data must be loaded from the server with the following relative URL: "/PruefungService/pruefung/gesetz/{id}" Add a HTML table to the view with the following Behandlungsvertrag columns: - column: NutztGebuehrenverzeichnis - column: DatumBeendigung - column: Gesetz - column: NutztGOAEAnalog - column: DatumUnterschrift - column: Behandlungsfall - column: Honorarvereinbarung - column: UeberschreitetGebuehrenrahmen - column: Vertragstext - column: Vertragsart The table should have the title "Behandlungsvertrags" und the data must be loaded from the server with the following relative URL: "/GesetzService/behandlungsvertrag/gesetz/{id}" Add a HTML table to the view with the following BerufLandRegelung columns: - column: Gesetz - column: Hinweise - column: Strafbarkeit - column: Beruf - column: Beschreibung - column: Regelungsstatus - column: Land The table should have the title "BerufLandRegelungs" und the data must be loaded from the server with the following relative URL: "/BerufService/beruflandregelung/gesetz/{id}" 4. The PatientView must contain the following fields: - name: Notizen type: STRING - name: Person type: LONG - name: Primaerversicherung type: LONG An existing Patient entity should be loaded from the relative URL: "/GesetzService/patient/{id}" (HTTP-GET) If a new Patient entity has been created, the new entity should be posted to the relative URL: "/GesetzService/patient" (HTTP-POST) If an existing Patient entity has been updated, the modified entity should be sent to the relative URL: "/GesetzService/patient/{id}" (HTTP-PUT) If an existing Patient entity has to be deleted, the following relative URL should be called: "/GesetzService/patient/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Behandlungsfall columns: - column: Infektionskrankheit - column: DiagnoseText - column: Heilpraktiker - column: MeldepflichtigeKrankheit - column: Notizen - column: EmpfehlungArztbesuch - column: Patient - column: Beginn - column: Ende The table should have the title "Behandlungsfalls" und the data must be loaded from the server with the following relative URL: "/GesetzService/behandlungsfall/patient/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum