Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BeteiligterApp
Please create a React-JS application for the BeteiligterModule. The application has to offer the following views for the user interface: 1. BeteiligtenrolleView 2. BeteiligterView 3. VerfahrensbeteiligterView 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 BeteiligtenrolleView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Beteiligtenrolle entity should be loaded from the relative URL: "/BeteiligterService/beteiligtenrolle/{id}" (HTTP-GET) If a new Beteiligtenrolle entity has been created, the new entity should be posted to the relative URL: "/BeteiligterService/beteiligtenrolle" (HTTP-POST) If an existing Beteiligtenrolle entity has been updated, the modified entity should be sent to the relative URL: "/BeteiligterService/beteiligtenrolle/{id}" (HTTP-PUT) If an existing Beteiligtenrolle entity has to be deleted, the following relative URL should be called: "/BeteiligterService/beteiligtenrolle/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Verfahrensbeteiligter columns: - column: Verfahren - column: Beteiligtenrolle - column: Beteiligter The table should have the title "Verfahrensbeteiligters" und the data must be loaded from the server with the following relative URL: "/BeteiligterService/verfahrensbeteiligter/beteiligtenrolle/{id}" 2. The BeteiligterView must contain the following fields: - name: Geburtsdatum type: DATE - name: IstOrganisation type: BOOL - name: Nachname type: STRING - name: Organisationsname type: STRING - name: Vorname type: STRING An existing Beteiligter entity should be loaded from the relative URL: "/BeteiligterService/beteiligter/{id}" (HTTP-GET) If a new Beteiligter entity has been created, the new entity should be posted to the relative URL: "/BeteiligterService/beteiligter" (HTTP-POST) If an existing Beteiligter entity has been updated, the modified entity should be sent to the relative URL: "/BeteiligterService/beteiligter/{id}" (HTTP-PUT) If an existing Beteiligter entity has to be deleted, the following relative URL should be called: "/BeteiligterService/beteiligter/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Verfahrensbeteiligter columns: - column: Verfahren - column: Beteiligtenrolle - column: Beteiligter The table should have the title "Verfahrensbeteiligters" und the data must be loaded from the server with the following relative URL: "/BeteiligterService/verfahrensbeteiligter/beteiligter/{id}" 3. The VerfahrensbeteiligterView must contain the following fields: - name: Beteiligtenrolle type: Beteiligtenrolle - name: Beteiligter type: Beteiligter - name: Verfahren type: Verfahren The data source for the [Verfahren] select control should be loaded from the relative URL: "/VerfahrenService/verfahren" (HTTP-GET) The data source for the [Beteiligter] select control should be loaded from the relative URL: "/BeteiligterService/beteiligter" (HTTP-GET) The data source for the [Beteiligtenrolle] select control should be loaded from the relative URL: "/BeteiligterService/beteiligtenrolle" (HTTP-GET) An existing Verfahrensbeteiligter entity should be loaded from the relative URL: "/BeteiligterService/verfahrensbeteiligter/{id}" (HTTP-GET) If a new Verfahrensbeteiligter entity has been created, the new entity should be posted to the relative URL: "/BeteiligterService/verfahrensbeteiligter" (HTTP-POST) If an existing Verfahrensbeteiligter entity has been updated, the modified entity should be sent to the relative URL: "/BeteiligterService/verfahrensbeteiligter/{id}" (HTTP-PUT) If an existing Verfahrensbeteiligter entity has to be deleted, the following relative URL should be called: "/BeteiligterService/verfahrensbeteiligter/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum