Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BetreuerApp
Please create a React-JS application for the BetreuerModule. The application has to offer the following views for the user interface: 1. AufwendungsentschaedigungView 2. BetreuerView 3. BetreuerVereinMitgliedschaftView 4. RechtsgrundlageView 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 AufwendungsentschaedigungView must contain the following fields: - name: Betreuer type: Betreuer - name: Gericht type: Betreuungsgericht - name: GewaehrtAm type: DATE - name: Jahr type: LONG - name: Notizen type: STRING - name: Pauschale type: DOUBLE - name: Rechtsgrundlage type: Rechtsgrundlage - name: Steuerpflichtig type: BOOL - name: Waehrung type: STRING 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 [Betreuer] select control should be loaded from the relative URL: "/BetreuerService/betreuer" (HTTP-GET) An existing Aufwendungsentschaedigung entity should be loaded from the relative URL: "/BetreuerService/aufwendungsentschaedigung/{id}" (HTTP-GET) If a new Aufwendungsentschaedigung entity has been created, the new entity should be posted to the relative URL: "/BetreuerService/aufwendungsentschaedigung" (HTTP-POST) If an existing Aufwendungsentschaedigung entity has been updated, the modified entity should be sent to the relative URL: "/BetreuerService/aufwendungsentschaedigung/{id}" (HTTP-PUT) If an existing Aufwendungsentschaedigung entity has to be deleted, the following relative URL should be called: "/BetreuerService/aufwendungsentschaedigung/{id}" (HTTP-DELETE) 2. The BetreuerView must contain the following fields: - name: Aktiv type: BOOL - name: BetreuerArt type: STRING - name: IstBekannter type: BOOL - name: IstBerufsbetreuer type: BOOL - name: IstFamilienangehoeriger type: BOOL - name: Notizen type: STRING - name: Person type: Person - name: Registrierungsdatum type: DATE The data source for the [Person] select control should be loaded from the relative URL: "/BetreuterService/person" (HTTP-GET) An existing Betreuer entity should be loaded from the relative URL: "/BetreuerService/betreuer/{id}" (HTTP-GET) If a new Betreuer entity has been created, the new entity should be posted to the relative URL: "/BetreuerService/betreuer" (HTTP-POST) If an existing Betreuer entity has been updated, the modified entity should be sent to the relative URL: "/BetreuerService/betreuer/{id}" (HTTP-PUT) If an existing Betreuer entity has to be deleted, the following relative URL should be called: "/BetreuerService/betreuer/{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/eingereichtvonbetreuer/{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/betreuer/{id}" Add a HTML table to the view with the following BetreuerSchulung columns: - column: ZertifikatNummer - column: Betreuer - column: Notizen - column: AbschlussDatum - column: Schulung - column: Zertifikat The table should have the title "BetreuerSchulungs" und the data must be loaded from the server with the following relative URL: "/BetreuungsbehoerdeService/betreuerschulung/betreuer/{id}" Add a HTML table to the view with the following BetreuerVereinMitgliedschaft columns: - column: VonDatum - column: BisDatum - column: Rolle - column: Betreuungsverein - column: Betreuer - column: Notizen The table should have the title "BetreuerVereinMitgliedschafts" und the data must be loaded from the server with the following relative URL: "/BetreuerService/betreuervereinmitgliedschaft/betreuer/{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/betreuer/{id}" 3. The BetreuerVereinMitgliedschaftView must contain the following fields: - name: Betreuer type: Betreuer - name: Betreuungsverein type: Betreuungsverein - name: BisDatum type: DATE - name: Notizen type: STRING - name: Rolle type: STRING - name: VonDatum type: DATE The data source for the [Betreuungsverein] select control should be loaded from the relative URL: "/BetreuungsbehoerdeService/betreuungsverein" (HTTP-GET) The data source for the [Betreuer] select control should be loaded from the relative URL: "/BetreuerService/betreuer" (HTTP-GET) An existing BetreuerVereinMitgliedschaft entity should be loaded from the relative URL: "/BetreuerService/betreuervereinmitgliedschaft/{id}" (HTTP-GET) If a new BetreuerVereinMitgliedschaft entity has been created, the new entity should be posted to the relative URL: "/BetreuerService/betreuervereinmitgliedschaft" (HTTP-POST) If an existing BetreuerVereinMitgliedschaft entity has been updated, the modified entity should be sent to the relative URL: "/BetreuerService/betreuervereinmitgliedschaft/{id}" (HTTP-PUT) If an existing BetreuerVereinMitgliedschaft entity has to be deleted, the following relative URL should be called: "/BetreuerService/betreuervereinmitgliedschaft/{id}" (HTTP-DELETE) 4. The RechtsgrundlageView must contain the following fields: - name: Beschreibung type: STRING - name: Gesetz type: STRING - name: Paragraph type: STRING - name: Titel type: STRING An existing Rechtsgrundlage entity should be loaded from the relative URL: "/BetreuerService/rechtsgrundlage/{id}" (HTTP-GET) If a new Rechtsgrundlage entity has been created, the new entity should be posted to the relative URL: "/BetreuerService/rechtsgrundlage" (HTTP-POST) If an existing Rechtsgrundlage entity has been updated, the modified entity should be sent to the relative URL: "/BetreuerService/rechtsgrundlage/{id}" (HTTP-PUT) If an existing Rechtsgrundlage entity has to be deleted, the following relative URL should be called: "/BetreuerService/rechtsgrundlage/{id}" (HTTP-DELETE) 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/rechtsgrundlage/{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/rechtsgrundlage/{id}" Add a HTML table to the view with the following Schulung columns: - column: DauerStunden - column: Beschreibung - column: Betreuungsverein - column: IstPflicht - column: Rechtsgrundlage - column: Betreuungsbehoerde - column: Titel - column: AnbieterArt The table should have the title "Schulungs" und the data must be loaded from the server with the following relative URL: "/BetreuungsbehoerdeService/schulung/rechtsgrundlage/{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/rechtsgrundlage/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum