Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
AufgabenkreisApp
Please create a React-JS application for the AufgabenkreisModule. The application has to offer the following views for the user interface: 1. AufgabenkreisView 2. BetreuungAufgabenkreisView 3. VerguetungView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The AufgabenkreisView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING - name: Rechtsverweis type: STRING An existing Aufgabenkreis entity should be loaded from the relative URL: "/AufgabenkreisService/aufgabenkreis/{id}" (HTTP-GET) If a new Aufgabenkreis entity has been created, the new entity should be posted to the relative URL: "/AufgabenkreisService/aufgabenkreis" (HTTP-POST) If an existing Aufgabenkreis entity has been updated, the modified entity should be sent to the relative URL: "/AufgabenkreisService/aufgabenkreis/{id}" (HTTP-PUT) If an existing Aufgabenkreis entity has to be deleted, the following relative URL should be called: "/AufgabenkreisService/aufgabenkreis/{id}" (HTTP-DELETE) 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/aufgabenkreis/{id}" 2. The BetreuungAufgabenkreisView must contain the following fields: - name: Aufgabenkreis type: Aufgabenkreis - name: Betreuung type: Betreuung - name: BisDatum type: DATE - name: IstEinschraenkung type: BOOL - name: Notizen type: STRING - name: VonDatum type: DATE The data source for the [Betreuung] select control should be loaded from the relative URL: "/BetreuungService/betreuung" (HTTP-GET) The data source for the [Aufgabenkreis] select control should be loaded from the relative URL: "/AufgabenkreisService/aufgabenkreis" (HTTP-GET) An existing BetreuungAufgabenkreis entity should be loaded from the relative URL: "/AufgabenkreisService/betreuungaufgabenkreis/{id}" (HTTP-GET) If a new BetreuungAufgabenkreis entity has been created, the new entity should be posted to the relative URL: "/AufgabenkreisService/betreuungaufgabenkreis" (HTTP-POST) If an existing BetreuungAufgabenkreis entity has been updated, the modified entity should be sent to the relative URL: "/AufgabenkreisService/betreuungaufgabenkreis/{id}" (HTTP-PUT) If an existing BetreuungAufgabenkreis entity has to be deleted, the following relative URL should be called: "/AufgabenkreisService/betreuungaufgabenkreis/{id}" (HTTP-DELETE) 3. The VerguetungView must contain the following fields: - name: BasisArt type: STRING - name: Betrag type: DOUBLE - name: Betreuung type: Betreuung - name: Entscheidungsdatum type: DATE - name: GerichtGenehmigt type: BOOL - name: IstEhrenamtspauschale type: BOOL - name: Notizen type: STRING - name: Rechtsgrundlage type: Rechtsgrundlage - name: Waehrung type: STRING - name: ZeitraumBis type: DATE - name: ZeitraumVon type: DATE The data source for the [Betreuung] select control should be loaded from the relative URL: "/BetreuungService/betreuung" (HTTP-GET) The data source for the [Rechtsgrundlage] select control should be loaded from the relative URL: "/BetreuerService/rechtsgrundlage" (HTTP-GET) An existing Verguetung entity should be loaded from the relative URL: "/AufgabenkreisService/verguetung/{id}" (HTTP-GET) If a new Verguetung entity has been created, the new entity should be posted to the relative URL: "/AufgabenkreisService/verguetung" (HTTP-POST) If an existing Verguetung entity has been updated, the modified entity should be sent to the relative URL: "/AufgabenkreisService/verguetung/{id}" (HTTP-PUT) If an existing Verguetung entity has to be deleted, the following relative URL should be called: "/AufgabenkreisService/verguetung/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum