Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BetreuterApp
Please create a React-JS application for the BetreuterModule. The application has to offer the following views for the user interface: 1. AntragView 2. BetreuterView 3. KontaktpersonView 4. PersonView 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 AntragView must contain the following fields: - name: AntragArt type: STRING - name: Betreuung type: Betreuung - name: Eingangsdatum type: DATE - name: EingereichtVonBehoerde type: Betreuungsbehoerde - name: EingereichtVonBetreuer type: Betreuer - name: EingereichtVonBetreuter type: Betreuter - name: EingereichtVonPerson type: Person - name: Gericht type: Betreuungsgericht - name: Notizen type: STRING - name: Status type: STRING The data source for the [Betreuung] select control should be loaded from the relative URL: "/BetreuungService/betreuung" (HTTP-GET) The data source for the [Gericht] select control should be loaded from the relative URL: "/BetreuungService/betreuungsgericht" (HTTP-GET) The data source for the [EingereichtVonBetreuter] select control should be loaded from the relative URL: "/BetreuterService/betreuter" (HTTP-GET) The data source for the [EingereichtVonBetreuer] select control should be loaded from the relative URL: "/BetreuerService/betreuer" (HTTP-GET) The data source for the [EingereichtVonPerson] select control should be loaded from the relative URL: "/BetreuterService/person" (HTTP-GET) The data source for the [EingereichtVonBehoerde] select control should be loaded from the relative URL: "/BetreuungsbehoerdeService/betreuungsbehoerde" (HTTP-GET) An existing Antrag entity should be loaded from the relative URL: "/BetreuterService/antrag/{id}" (HTTP-GET) If a new Antrag entity has been created, the new entity should be posted to the relative URL: "/BetreuterService/antrag" (HTTP-POST) If an existing Antrag entity has been updated, the modified entity should be sent to the relative URL: "/BetreuterService/antrag/{id}" (HTTP-PUT) If an existing Antrag entity has to be deleted, the following relative URL should be called: "/BetreuterService/antrag/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Beschluss columns: - column: Zusammenfassung - column: Antrag - column: Gericht - column: Rechtsgrundlage - column: Ergebnis - column: BeschlussArt - column: Entscheidungsdatum - column: Betreuung The table should have the title "Beschlusss" und the data must be loaded from the server with the following relative URL: "/BetreuungService/beschluss/antrag/{id}" 2. The BetreuterView must contain the following fields: - name: Entscheidungsfaehigkeit type: STRING - name: HauptwohnsitzLand type: STRING - name: HauptwohnsitzOrt type: STRING - name: HauptwohnsitzPlz type: STRING - name: HauptwohnsitzStrasse type: STRING - name: Notizen type: STRING - name: Person type: Person - name: Pflegegrad type: STRING The data source for the [Person] select control should be loaded from the relative URL: "/BetreuterService/person" (HTTP-GET) An existing Betreuter entity should be loaded from the relative URL: "/BetreuterService/betreuter/{id}" (HTTP-GET) If a new Betreuter entity has been created, the new entity should be posted to the relative URL: "/BetreuterService/betreuter" (HTTP-POST) If an existing Betreuter entity has been updated, the modified entity should be sent to the relative URL: "/BetreuterService/betreuter/{id}" (HTTP-PUT) If an existing Betreuter entity has to be deleted, the following relative URL should be called: "/BetreuterService/betreuter/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Antrag columns: - column: Betreuung - column: EingereichtVonBetreuter - column: EingereichtVonPerson - column: Notizen - column: AntragArt - column: EingereichtVonBehoerde - column: EingereichtVonBetreuer - column: Gericht - column: Status - column: Eingangsdatum The table should have the title "Antrags" und the data must be loaded from the server with the following relative URL: "/BetreuterService/antrag/eingereichtvonbetreuter/{id}" Add a HTML table to the view with the following Betreuung columns: - column: Beendigungsgrund - column: Betreuter - column: Betreuer - column: AufgabenBeschreibung - column: EndeDatum - column: Betreuungsgericht - column: Betreuungsbehoerde - column: BeginnDatum - column: IstEhrenamtlich - column: IstUmfassend - column: AngelegtAm - column: Notizen The table should have the title "Betreuungs" und the data must be loaded from the server with the following relative URL: "/BetreuungService/betreuung/betreuter/{id}" Add a HTML table to the view with the following BetreuterEinrichtung columns: - column: Notizen - column: Einrichtung - column: Betreuter - column: Aufenthaltsart - column: VonDatum - column: BisDatum The table should have the title "BetreuterEinrichtungs" und the data must be loaded from the server with the following relative URL: "/EinrichtungService/betreutereinrichtung/betreuter/{id}" Add a HTML table to the view with the following Kontaktperson columns: - column: Telefonnummer - column: Organisation - column: Rolle - column: Betreuter - column: Person - column: Email - column: Notizen The table should have the title "Kontaktpersons" und the data must be loaded from the server with the following relative URL: "/BetreuterService/kontaktperson/betreuter/{id}" 3. The KontaktpersonView must contain the following fields: - name: Betreuter type: Betreuter - name: Email type: STRING - name: Notizen type: STRING - name: Organisation type: STRING - name: Person type: Person - name: Rolle type: STRING - name: Telefonnummer type: STRING The data source for the [Betreuter] select control should be loaded from the relative URL: "/BetreuterService/betreuter" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/BetreuterService/person" (HTTP-GET) An existing Kontaktperson entity should be loaded from the relative URL: "/BetreuterService/kontaktperson/{id}" (HTTP-GET) If a new Kontaktperson entity has been created, the new entity should be posted to the relative URL: "/BetreuterService/kontaktperson" (HTTP-POST) If an existing Kontaktperson entity has been updated, the modified entity should be sent to the relative URL: "/BetreuterService/kontaktperson/{id}" (HTTP-PUT) If an existing Kontaktperson entity has to be deleted, the following relative URL should be called: "/BetreuterService/kontaktperson/{id}" (HTTP-DELETE) 4. The PersonView must contain the following fields: - name: AdresseLand type: STRING - name: AdresseOrt type: STRING - name: AdressePlz type: STRING - name: AdresseStrasse type: STRING - name: Geburtsdatum type: DATE - name: Geburtsort type: STRING - name: Nachname type: STRING - name: Nationalitaet type: STRING - name: Vorname type: STRING An existing Person entity should be loaded from the relative URL: "/BetreuterService/person/{id}" (HTTP-GET) If a new Person entity has been created, the new entity should be posted to the relative URL: "/BetreuterService/person" (HTTP-POST) If an existing Person entity has been updated, the modified entity should be sent to the relative URL: "/BetreuterService/person/{id}" (HTTP-PUT) If an existing Person entity has to be deleted, the following relative URL should be called: "/BetreuterService/person/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Antrag columns: - column: Betreuung - column: EingereichtVonBetreuter - column: EingereichtVonPerson - column: Notizen - column: AntragArt - column: EingereichtVonBehoerde - column: EingereichtVonBetreuer - column: Gericht - column: Status - column: Eingangsdatum The table should have the title "Antrags" und the data must be loaded from the server with the following relative URL: "/BetreuterService/antrag/eingereichtvonperson/{id}" Add a HTML table to the view with the following Betreuter columns: - column: HauptwohnsitzStrasse - column: HauptwohnsitzLand - column: Notizen - column: HauptwohnsitzOrt - column: Entscheidungsfaehigkeit - column: Pflegegrad - column: HauptwohnsitzPlz - column: Person The table should have the title "Betreuters" und the data must be loaded from the server with the following relative URL: "/BetreuterService/betreuter/person/{id}" Add a HTML table to the view with the following Betreuer columns: - column: BetreuerArt - column: Notizen - column: Person - column: IstFamilienangehoeriger - column: IstBekannter - column: Aktiv - column: Registrierungsdatum - column: IstBerufsbetreuer The table should have the title "Betreuers" und the data must be loaded from the server with the following relative URL: "/BetreuerService/betreuer/person/{id}" Add a HTML table to the view with the following Kontaktperson columns: - column: Telefonnummer - column: Organisation - column: Rolle - column: Betreuter - column: Person - column: Email - column: Notizen The table should have the title "Kontaktpersons" und the data must be loaded from the server with the following relative URL: "/BetreuterService/kontaktperson/person/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum