Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BehinderungsartApp
Please create a React-JS application for the BehinderungsartModule. The application has to offer the following views for the user interface: 1. BehinderungsartView 2. TeilnehmendePersonBehinderungView 3. UebergangsergebnisView 4. WerkstattTraegerzuordnungView 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 BehinderungsartView must contain the following fields: - name: Beschreibung type: STRING - name: Code type: STRING - name: Name type: STRING An existing Behinderungsart entity should be loaded from the relative URL: "/BehinderungsartService/behinderungsart/{id}" (HTTP-GET) If a new Behinderungsart entity has been created, the new entity should be posted to the relative URL: "/BehinderungsartService/behinderungsart" (HTTP-POST) If an existing Behinderungsart entity has been updated, the modified entity should be sent to the relative URL: "/BehinderungsartService/behinderungsart/{id}" (HTTP-PUT) If an existing Behinderungsart entity has to be deleted, the following relative URL should be called: "/BehinderungsartService/behinderungsart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TeilnehmendePersonBehinderung columns: - column: TeilnehmendePerson - column: Behinderungsart - column: Beschreibung - column: Primaer The table should have the title "TeilnehmendePersonBehinderungs" und the data must be loaded from the server with the following relative URL: "/BehinderungsartService/teilnehmendepersonbehinderung/behinderungsart/{id}" 2. The TeilnehmendePersonBehinderungView must contain the following fields: - name: Behinderungsart type: Behinderungsart - name: Beschreibung type: STRING - name: Primaer type: BOOL - name: TeilnehmendePerson type: TeilnehmendePerson The data source for the [Behinderungsart] select control should be loaded from the relative URL: "/BehinderungsartService/behinderungsart" (HTTP-GET) The data source for the [TeilnehmendePerson] select control should be loaded from the relative URL: "/TeilnehmendePersonService/teilnehmendeperson" (HTTP-GET) An existing TeilnehmendePersonBehinderung entity should be loaded from the relative URL: "/BehinderungsartService/teilnehmendepersonbehinderung/{id}" (HTTP-GET) If a new TeilnehmendePersonBehinderung entity has been created, the new entity should be posted to the relative URL: "/BehinderungsartService/teilnehmendepersonbehinderung" (HTTP-POST) If an existing TeilnehmendePersonBehinderung entity has been updated, the modified entity should be sent to the relative URL: "/BehinderungsartService/teilnehmendepersonbehinderung/{id}" (HTTP-PUT) If an existing TeilnehmendePersonBehinderung entity has to be deleted, the following relative URL should be called: "/BehinderungsartService/teilnehmendepersonbehinderung/{id}" (HTTP-DELETE) 3. The UebergangsergebnisView must contain the following fields: - name: Ergebnisdatum type: DATE - name: Ergebnistyp type: STRING - name: TeilnehmendePerson type: TeilnehmendePerson - name: ZielArbeitgeber type: STRING - name: ZielOrt type: STRING The data source for the [TeilnehmendePerson] select control should be loaded from the relative URL: "/TeilnehmendePersonService/teilnehmendeperson" (HTTP-GET) An existing Uebergangsergebnis entity should be loaded from the relative URL: "/BehinderungsartService/uebergangsergebnis/{id}" (HTTP-GET) If a new Uebergangsergebnis entity has been created, the new entity should be posted to the relative URL: "/BehinderungsartService/uebergangsergebnis" (HTTP-POST) If an existing Uebergangsergebnis entity has been updated, the modified entity should be sent to the relative URL: "/BehinderungsartService/uebergangsergebnis/{id}" (HTTP-PUT) If an existing Uebergangsergebnis entity has to be deleted, the following relative URL should be called: "/BehinderungsartService/uebergangsergebnis/{id}" (HTTP-DELETE) 4. The WerkstattTraegerzuordnungView must contain the following fields: - name: GueltigBis type: DATE - name: GueltigVon type: DATE - name: Rolle type: STRING - name: Traeger type: Traegerorganisation - name: Werkstatt type: Werkstatt The data source for the [Traeger] select control should be loaded from the relative URL: "/LandService/traegerorganisation" (HTTP-GET) The data source for the [Werkstatt] select control should be loaded from the relative URL: "/WerkstattService/werkstatt" (HTTP-GET) An existing WerkstattTraegerzuordnung entity should be loaded from the relative URL: "/BehinderungsartService/werkstatttraegerzuordnung/{id}" (HTTP-GET) If a new WerkstattTraegerzuordnung entity has been created, the new entity should be posted to the relative URL: "/BehinderungsartService/werkstatttraegerzuordnung" (HTTP-POST) If an existing WerkstattTraegerzuordnung entity has been updated, the modified entity should be sent to the relative URL: "/BehinderungsartService/werkstatttraegerzuordnung/{id}" (HTTP-PUT) If an existing WerkstattTraegerzuordnung entity has to be deleted, the following relative URL should be called: "/BehinderungsartService/werkstatttraegerzuordnung/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum