Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
VerfahrenView
Please create a React-JS view called "VerfahrenView" for the fields of the Verfahren entity. 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}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum