Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LeistungsartApp
Please create a React-JS application for the LeistungsartModule. The application has to offer the following views for the user interface: 1. LeistungView 2. LeistungsartView 3. VerwaltungseinheitView 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 LeistungView must contain the following fields: - name: AktivBis type: DATE - name: AktivSeit type: DATE - name: Beschreibung type: STRING - name: Bezeichnung type: STRING - name: Jugendamt type: Jugendamt - name: Leistungsart type: Leistungsart The data source for the [Jugendamt] select control should be loaded from the relative URL: "/JugendamtService/jugendamt" (HTTP-GET) The data source for the [Leistungsart] select control should be loaded from the relative URL: "/LeistungsartService/leistungsart" (HTTP-GET) An existing Leistung entity should be loaded from the relative URL: "/LeistungsartService/leistung/{id}" (HTTP-GET) If a new Leistung entity has been created, the new entity should be posted to the relative URL: "/LeistungsartService/leistung" (HTTP-POST) If an existing Leistung entity has been updated, the modified entity should be sent to the relative URL: "/LeistungsartService/leistung/{id}" (HTTP-PUT) If an existing Leistung entity has to be deleted, the following relative URL should be called: "/LeistungsartService/leistung/{id}" (HTTP-DELETE) 2. The LeistungsartView must contain the following fields: - name: Beschreibung type: STRING - name: Bezeichnung type: STRING - name: Code type: STRING - name: Kategorie type: STRING - name: RechtsgrundlageParagraf type: STRING An existing Leistungsart entity should be loaded from the relative URL: "/LeistungsartService/leistungsart/{id}" (HTTP-GET) If a new Leistungsart entity has been created, the new entity should be posted to the relative URL: "/LeistungsartService/leistungsart" (HTTP-POST) If an existing Leistungsart entity has been updated, the modified entity should be sent to the relative URL: "/LeistungsartService/leistungsart/{id}" (HTTP-PUT) If an existing Leistungsart entity has to be deleted, the following relative URL should be called: "/LeistungsartService/leistungsart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Leistungsfall columns: - column: Familie - column: HilfeplanErforderlich - column: Status - column: RechtsgrundlageParagraf - column: Kind - column: Jugendlicher - column: Antragsteller - column: Ende - column: Beginn - column: Leistungsart - column: Jugendamt The table should have the title "Leistungsfalls" und the data must be loaded from the server with the following relative URL: "/FamilieService/leistungsfall/leistungsart/{id}" Add a HTML table to the view with the following Leistung columns: - column: Beschreibung - column: Leistungsart - column: Jugendamt - column: AktivSeit - column: Bezeichnung - column: AktivBis The table should have the title "Leistungs" und the data must be loaded from the server with the following relative URL: "/LeistungsartService/leistung/leistungsart/{id}" 3. The VerwaltungseinheitView must contain the following fields: - name: Beschreibung type: STRING - name: BisDatum type: DATE - name: Jugendamt type: Jugendamt - name: Leitungsperson type: STRING - name: Name type: STRING - name: VonDatum type: DATE The data source for the [Jugendamt] select control should be loaded from the relative URL: "/JugendamtService/jugendamt" (HTTP-GET) An existing Verwaltungseinheit entity should be loaded from the relative URL: "/LeistungsartService/verwaltungseinheit/{id}" (HTTP-GET) If a new Verwaltungseinheit entity has been created, the new entity should be posted to the relative URL: "/LeistungsartService/verwaltungseinheit" (HTTP-POST) If an existing Verwaltungseinheit entity has been updated, the modified entity should be sent to the relative URL: "/LeistungsartService/verwaltungseinheit/{id}" (HTTP-PUT) If an existing Verwaltungseinheit entity has to be deleted, the following relative URL should be called: "/LeistungsartService/verwaltungseinheit/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Mitarbeiter columns: - column: Qualifikation - column: AktivSeit - column: IstFachkraft - column: Verwaltungseinheit - column: AktivBis - column: IstInsoweitErfahreneFachkraft - column: Berufsbezeichnung - column: Name The table should have the title "Mitarbeiters" und the data must be loaded from the server with the following relative URL: "/MitarbeiterService/mitarbeiter/verwaltungseinheit/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum