Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
EinrichtungApp
Please create a React-JS application for the EinrichtungModule. The application has to offer the following views for the user interface: 1. BetriebserlaubnisView 2. BeurkundungView 3. EinrichtungView 4. MitwirkungJugendamtVerfahrenView 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 BetriebserlaubnisView must contain the following fields: - name: Auflagen type: STRING - name: Einrichtung type: Einrichtung - name: Erteilungsdatum type: DATE - name: RechtsgrundlageParagraf type: STRING - name: Ruecknahmedatum type: DATE - name: Widerrufsdatum type: DATE The data source for the [Einrichtung] select control should be loaded from the relative URL: "/EinrichtungService/einrichtung" (HTTP-GET) An existing Betriebserlaubnis entity should be loaded from the relative URL: "/EinrichtungService/betriebserlaubnis/{id}" (HTTP-GET) If a new Betriebserlaubnis entity has been created, the new entity should be posted to the relative URL: "/EinrichtungService/betriebserlaubnis" (HTTP-POST) If an existing Betriebserlaubnis entity has been updated, the modified entity should be sent to the relative URL: "/EinrichtungService/betriebserlaubnis/{id}" (HTTP-PUT) If an existing Betriebserlaubnis entity has to be deleted, the following relative URL should be called: "/EinrichtungService/betriebserlaubnis/{id}" (HTTP-DELETE) 2. The BeurkundungView must contain the following fields: - name: Beschreibung type: STRING - name: BeteiligtePerson1 type: Person - name: BeteiligtePerson2 type: Person - name: Beurkundungsart type: STRING - name: Datum type: DATE - name: Jugendamt type: Jugendamt The data source for the [Jugendamt] select control should be loaded from the relative URL: "/JugendamtService/jugendamt" (HTTP-GET) The data source for the [BeteiligtePerson2] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [BeteiligtePerson1] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Beurkundung entity should be loaded from the relative URL: "/EinrichtungService/beurkundung/{id}" (HTTP-GET) If a new Beurkundung entity has been created, the new entity should be posted to the relative URL: "/EinrichtungService/beurkundung" (HTTP-POST) If an existing Beurkundung entity has been updated, the modified entity should be sent to the relative URL: "/EinrichtungService/beurkundung/{id}" (HTTP-PUT) If an existing Beurkundung entity has to be deleted, the following relative URL should be called: "/EinrichtungService/beurkundung/{id}" (HTTP-DELETE) 3. The EinrichtungView must contain the following fields: - name: AktivBis type: DATE - name: AktivSeit type: DATE - name: Bundesland type: STRING - name: Einrichtungstyp type: STRING - name: JugendamtZustaendig type: Jugendamt - name: Name type: STRING - name: Ort type: STRING - name: Traeger type: STRING The data source for the [JugendamtZustaendig] select control should be loaded from the relative URL: "/JugendamtService/jugendamt" (HTTP-GET) An existing Einrichtung entity should be loaded from the relative URL: "/EinrichtungService/einrichtung/{id}" (HTTP-GET) If a new Einrichtung entity has been created, the new entity should be posted to the relative URL: "/EinrichtungService/einrichtung" (HTTP-POST) If an existing Einrichtung entity has been updated, the modified entity should be sent to the relative URL: "/EinrichtungService/einrichtung/{id}" (HTTP-PUT) If an existing Einrichtung entity has to be deleted, the following relative URL should be called: "/EinrichtungService/einrichtung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Betriebserlaubnis columns: - column: RechtsgrundlageParagraf - column: Einrichtung - column: Ruecknahmedatum - column: Erteilungsdatum - column: Auflagen - column: Widerrufsdatum The table should have the title "Betriebserlaubniss" und the data must be loaded from the server with the following relative URL: "/EinrichtungService/betriebserlaubnis/einrichtung/{id}" Add a HTML table to the view with the following Taetigkeitsuntersagung columns: - column: RechtsgrundlageParagraf - column: Einrichtung - column: Jugendamt - column: BetroffenePerson - column: Grund - column: Datum The table should have the title "Taetigkeitsuntersagungs" und the data must be loaded from the server with the following relative URL: "/PflegepersonService/taetigkeitsuntersagung/einrichtung/{id}" Add a HTML table to the view with the following EinrichtungFreierTraeger columns: - column: Einrichtung - column: BeginnTraegerschaft - column: EndeTraegerschaft - column: FreierTraeger The table should have the title "EinrichtungFreierTraegers" und the data must be loaded from the server with the following relative URL: "/FreierTraegerService/einrichtungfreiertraeger/einrichtung/{id}" Add a HTML table to the view with the following InobhutnahmeFall columns: - column: Pflegeperson - column: Beginn - column: GerichtlicheEntscheidung - column: GerichtlicheEntscheidungErforderlich - column: Einrichtung - column: Jugendamt - column: Grund - column: Unterbringungsart - column: Familie - column: Ende - column: GegenWillenSorgeberechtigter - column: BetroffenePerson The table should have the title "InobhutnahmeFalls" und the data must be loaded from the server with the following relative URL: "/FreierTraegerService/inobhutnahmefall/einrichtung/{id}" 4. The MitwirkungJugendamtVerfahrenView must contain the following fields: - name: Beginn type: DATE - name: BerichtErstellt type: BOOL - name: Ende type: DATE - name: GerichtlichesVerfahren type: GerichtlichesVerfahren - name: Jugendamt type: Jugendamt - name: Mitwirkungsart type: STRING The data source for the [Jugendamt] select control should be loaded from the relative URL: "/JugendamtService/jugendamt" (HTTP-GET) The data source for the [GerichtlichesVerfahren] select control should be loaded from the relative URL: "/GerichtlichesVerfahrenService/gerichtlichesverfahren" (HTTP-GET) An existing MitwirkungJugendamtVerfahren entity should be loaded from the relative URL: "/EinrichtungService/mitwirkungjugendamtverfahren/{id}" (HTTP-GET) If a new MitwirkungJugendamtVerfahren entity has been created, the new entity should be posted to the relative URL: "/EinrichtungService/mitwirkungjugendamtverfahren" (HTTP-POST) If an existing MitwirkungJugendamtVerfahren entity has been updated, the modified entity should be sent to the relative URL: "/EinrichtungService/mitwirkungjugendamtverfahren/{id}" (HTTP-PUT) If an existing MitwirkungJugendamtVerfahren entity has to be deleted, the following relative URL should be called: "/EinrichtungService/mitwirkungjugendamtverfahren/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum