Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
VerfahrenApp
Please create a React-JS application for the VerfahrenModule. The application has to offer the following views for the user interface: 1. GerichtszustaendigkeitView 2. SpruchkoerperZuweisungView 3. VerfahrenView 4. VerfahrensartView 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 GerichtszustaendigkeitView must contain the following fields: - name: Gericht type: Gericht - name: IstExklusiv type: BOOL - name: MaximalstrafeJahre type: LONG - name: Maximalwert type: STRING - name: Mindestwert type: STRING - name: Verfahrensart type: Verfahrensart The data source for the [Verfahrensart] select control should be loaded from the relative URL: "/VerfahrenService/verfahrensart" (HTTP-GET) The data source for the [Gericht] select control should be loaded from the relative URL: "/GerichtService/gericht" (HTTP-GET) An existing Gerichtszustaendigkeit entity should be loaded from the relative URL: "/VerfahrenService/gerichtszustaendigkeit/{id}" (HTTP-GET) If a new Gerichtszustaendigkeit entity has been created, the new entity should be posted to the relative URL: "/VerfahrenService/gerichtszustaendigkeit" (HTTP-POST) If an existing Gerichtszustaendigkeit entity has been updated, the modified entity should be sent to the relative URL: "/VerfahrenService/gerichtszustaendigkeit/{id}" (HTTP-PUT) If an existing Gerichtszustaendigkeit entity has to be deleted, the following relative URL should be called: "/VerfahrenService/gerichtszustaendigkeit/{id}" (HTTP-DELETE) 2. The SpruchkoerperZuweisungView must contain the following fields: - name: Rollenbeschreibung type: STRING - name: Spruchkoerper type: Spruchkoerper - name: Verfahren type: Verfahren - name: Zuweisungsdatum type: DATE The data source for the [Spruchkoerper] select control should be loaded from the relative URL: "/GerichtService/spruchkoerper" (HTTP-GET) The data source for the [Verfahren] select control should be loaded from the relative URL: "/VerfahrenService/verfahren" (HTTP-GET) An existing SpruchkoerperZuweisung entity should be loaded from the relative URL: "/VerfahrenService/spruchkoerperzuweisung/{id}" (HTTP-GET) If a new SpruchkoerperZuweisung entity has been created, the new entity should be posted to the relative URL: "/VerfahrenService/spruchkoerperzuweisung" (HTTP-POST) If an existing SpruchkoerperZuweisung entity has been updated, the modified entity should be sent to the relative URL: "/VerfahrenService/spruchkoerperzuweisung/{id}" (HTTP-PUT) If an existing SpruchkoerperZuweisung entity has to be deleted, the following relative URL should be called: "/VerfahrenService/spruchkoerperzuweisung/{id}" (HTTP-DELETE) 3. The VerfahrenView must contain the following fields: - name: Aktenzeichen type: STRING - name: AktuellesGericht type: Gericht - name: Beschreibung type: STRING - name: Enddatum type: DATE - name: Erstgericht type: Gericht - name: IstAbgeschlossen type: BOOL - name: Startdatum type: DATE - name: Verfahrensart type: Verfahrensart The data source for the [Verfahrensart] select control should be loaded from the relative URL: "/VerfahrenService/verfahrensart" (HTTP-GET) The data source for the [AktuellesGericht] select control should be loaded from the relative URL: "/GerichtService/gericht" (HTTP-GET) The data source for the [Erstgericht] select control should be loaded from the relative URL: "/GerichtService/gericht" (HTTP-GET) An existing Verfahren entity should be loaded from the relative URL: "/VerfahrenService/verfahren/{id}" (HTTP-GET) If a new Verfahren entity has been created, the new entity should be posted to the relative URL: "/VerfahrenService/verfahren" (HTTP-POST) If an existing Verfahren entity has been updated, the modified entity should be sent to the relative URL: "/VerfahrenService/verfahren/{id}" (HTTP-PUT) If an existing Verfahren entity has to be deleted, the following relative URL should be called: "/VerfahrenService/verfahren/{id}" (HTTP-DELETE) Add a HTML table to the view with the following VerfahrenGesetz columns: - column: Gesetz - column: Referenztext - column: Verfahren The table should have the title "VerfahrenGesetzs" und the data must be loaded from the server with the following relative URL: "/GesetzService/verfahrengesetz/verfahren/{id}" 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/verfahren/{id}" Add a HTML table to the view with the following SpruchkoerperZuweisung columns: - column: Spruchkoerper - column: Rollenbeschreibung - column: Verfahren - column: Zuweisungsdatum The table should have the title "SpruchkoerperZuweisungs" und the data must be loaded from the server with the following relative URL: "/VerfahrenService/spruchkoerperzuweisung/verfahren/{id}" Add a HTML table to the view with the following Rechtsmittel columns: - column: Eingangsdatum - column: Ausgangsverfahren - column: Rechtsmittelgericht - column: Rechtsmitteltyp - column: Entscheidungsdatum - column: Ergebnis - column: Zielverfahren The table should have the title "Rechtsmittels" und the data must be loaded from the server with the following relative URL: "/GerichtService/rechtsmittel/ausgangsverfahren/{id}" Add a HTML table to the view with the following Rechtsmittel columns: - column: Eingangsdatum - column: Ausgangsverfahren - column: Rechtsmittelgericht - column: Rechtsmitteltyp - column: Entscheidungsdatum - column: Ergebnis - column: Zielverfahren The table should have the title "Rechtsmittels" und the data must be loaded from the server with the following relative URL: "/GerichtService/rechtsmittel/zielverfahren/{id}" 4. The VerfahrensartView must contain the following fields: - name: Beschreibung type: STRING - name: IstStrafverfahren type: BOOL - name: IstZivilverfahren type: BOOL - name: Maximalwert type: STRING - name: Name type: STRING An existing Verfahrensart entity should be loaded from the relative URL: "/VerfahrenService/verfahrensart/{id}" (HTTP-GET) If a new Verfahrensart entity has been created, the new entity should be posted to the relative URL: "/VerfahrenService/verfahrensart" (HTTP-POST) If an existing Verfahrensart entity has been updated, the modified entity should be sent to the relative URL: "/VerfahrenService/verfahrensart/{id}" (HTTP-PUT) If an existing Verfahrensart entity has to be deleted, the following relative URL should be called: "/VerfahrenService/verfahrensart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Gerichtszustaendigkeit columns: - column: Mindestwert - column: Maximalwert - column: IstExklusiv - column: Verfahrensart - column: MaximalstrafeJahre - column: Gericht The table should have the title "Gerichtszustaendigkeits" und the data must be loaded from the server with the following relative URL: "/VerfahrenService/gerichtszustaendigkeit/verfahrensart/{id}" Add a HTML table to the view with the following Verfahren columns: - column: Erstgericht - column: Enddatum - column: Verfahrensart - column: Beschreibung - column: Startdatum - column: Aktenzeichen - column: AktuellesGericht - column: IstAbgeschlossen The table should have the title "Verfahrens" und the data must be loaded from the server with the following relative URL: "/VerfahrenService/verfahren/verfahrensart/{id}" Add a HTML table to the view with the following VerfahrensartRechtsgebiet columns: - column: Verfahrensart - column: Rechtsgebiet The table should have the title "VerfahrensartRechtsgebiets" und the data must be loaded from the server with the following relative URL: "/RechtsgebietService/verfahrensartrechtsgebiet/verfahrensart/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum