Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BetreuungApp
Please create a React-JS application for the BetreuungModule. The application has to offer the following views for the user interface: 1. BerichtView 2. BeschlussView 3. BetreuungView 4. BetreuungsgerichtView 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 BerichtView must contain the following fields: - name: BerichtArt type: STRING - name: Betreuung type: Betreuung - name: EingereichtAm type: DATE - name: FaelligAm type: DATE - name: GerichtAkzeptiert type: BOOL - name: InhaltKurz type: STRING - name: Notizen type: STRING The data source for the [Betreuung] select control should be loaded from the relative URL: "/BetreuungService/betreuung" (HTTP-GET) An existing Bericht entity should be loaded from the relative URL: "/BetreuungService/bericht/{id}" (HTTP-GET) If a new Bericht entity has been created, the new entity should be posted to the relative URL: "/BetreuungService/bericht" (HTTP-POST) If an existing Bericht entity has been updated, the modified entity should be sent to the relative URL: "/BetreuungService/bericht/{id}" (HTTP-PUT) If an existing Bericht entity has to be deleted, the following relative URL should be called: "/BetreuungService/bericht/{id}" (HTTP-DELETE) 2. The BeschlussView must contain the following fields: - name: Antrag type: Antrag - name: BeschlussArt type: STRING - name: Betreuung type: Betreuung - name: Entscheidungsdatum type: DATE - name: Ergebnis type: STRING - name: Gericht type: Betreuungsgericht - name: Rechtsgrundlage type: Rechtsgrundlage - name: Zusammenfassung 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 [Rechtsgrundlage] select control should be loaded from the relative URL: "/BetreuerService/rechtsgrundlage" (HTTP-GET) The data source for the [Antrag] select control should be loaded from the relative URL: "/BetreuterService/antrag" (HTTP-GET) An existing Beschluss entity should be loaded from the relative URL: "/BetreuungService/beschluss/{id}" (HTTP-GET) If a new Beschluss entity has been created, the new entity should be posted to the relative URL: "/BetreuungService/beschluss" (HTTP-POST) If an existing Beschluss entity has been updated, the modified entity should be sent to the relative URL: "/BetreuungService/beschluss/{id}" (HTTP-PUT) If an existing Beschluss entity has to be deleted, the following relative URL should be called: "/BetreuungService/beschluss/{id}" (HTTP-DELETE) 3. The BetreuungView must contain the following fields: - name: AngelegtAm type: DATE - name: AufgabenBeschreibung type: STRING - name: Beendigungsgrund type: STRING - name: BeginnDatum type: DATE - name: Betreuer type: Betreuer - name: Betreuter type: Betreuter - name: Betreuungsbehoerde type: Betreuungsbehoerde - name: Betreuungsgericht type: Betreuungsgericht - name: EndeDatum type: DATE - name: IstEhrenamtlich type: BOOL - name: IstUmfassend type: BOOL - name: Notizen type: STRING The data source for the [Betreuungsbehoerde] select control should be loaded from the relative URL: "/BetreuungsbehoerdeService/betreuungsbehoerde" (HTTP-GET) The data source for the [Betreuungsgericht] select control should be loaded from the relative URL: "/BetreuungService/betreuungsgericht" (HTTP-GET) The data source for the [Betreuer] select control should be loaded from the relative URL: "/BetreuerService/betreuer" (HTTP-GET) The data source for the [Betreuter] select control should be loaded from the relative URL: "/BetreuterService/betreuter" (HTTP-GET) An existing Betreuung entity should be loaded from the relative URL: "/BetreuungService/betreuung/{id}" (HTTP-GET) If a new Betreuung entity has been created, the new entity should be posted to the relative URL: "/BetreuungService/betreuung" (HTTP-POST) If an existing Betreuung entity has been updated, the modified entity should be sent to the relative URL: "/BetreuungService/betreuung/{id}" (HTTP-PUT) If an existing Betreuung entity has to be deleted, the following relative URL should be called: "/BetreuungService/betreuung/{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/betreuung/{id}" Add a HTML table to the view with the following BetreuungAufgabenkreis columns: - column: BisDatum - column: VonDatum - column: Notizen - column: Betreuung - column: Aufgabenkreis - column: IstEinschraenkung The table should have the title "BetreuungAufgabenkreiss" und the data must be loaded from the server with the following relative URL: "/AufgabenkreisService/betreuungaufgabenkreis/betreuung/{id}" Add a HTML table to the view with the following Verguetung columns: - column: Entscheidungsdatum - column: IstEhrenamtspauschale - column: ZeitraumBis - column: Rechtsgrundlage - column: Betrag - column: Waehrung - column: ZeitraumVon - column: GerichtGenehmigt - column: Betreuung - column: Notizen - column: BasisArt The table should have the title "Verguetungs" und the data must be loaded from the server with the following relative URL: "/AufgabenkreisService/verguetung/betreuung/{id}" 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/betreuung/{id}" Add a HTML table to the view with the following Bericht columns: - column: InhaltKurz - column: FaelligAm - column: EingereichtAm - column: BerichtArt - column: Betreuung - column: Notizen - column: GerichtAkzeptiert The table should have the title "Berichts" und the data must be loaded from the server with the following relative URL: "/BetreuungService/bericht/betreuung/{id}" 4. The BetreuungsgerichtView must contain the following fields: - name: AdresseLand type: STRING - name: AdresseOrt type: STRING - name: AdressePlz type: STRING - name: AdresseStrasse type: STRING - name: Email type: STRING - name: GerichtArt type: STRING - name: Name type: STRING - name: Telefonnummer type: STRING - name: Zustaendigkeitsbereich type: STRING An existing Betreuungsgericht entity should be loaded from the relative URL: "/BetreuungService/betreuungsgericht/{id}" (HTTP-GET) If a new Betreuungsgericht entity has been created, the new entity should be posted to the relative URL: "/BetreuungService/betreuungsgericht" (HTTP-POST) If an existing Betreuungsgericht entity has been updated, the modified entity should be sent to the relative URL: "/BetreuungService/betreuungsgericht/{id}" (HTTP-PUT) If an existing Betreuungsgericht entity has to be deleted, the following relative URL should be called: "/BetreuungService/betreuungsgericht/{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/gericht/{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/betreuungsgericht/{id}" 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/gericht/{id}" Add a HTML table to the view with the following Aufwendungsentschaedigung columns: - column: Rechtsgrundlage - column: Notizen - column: Jahr - column: Waehrung - column: Gericht - column: Betreuer - column: Steuerpflichtig - column: GewaehrtAm - column: Pauschale The table should have the title "Aufwendungsentschaedigungs" und the data must be loaded from the server with the following relative URL: "/BetreuerService/aufwendungsentschaedigung/gericht/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum