Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PruefungApp
Please create a React-JS application for the PruefungModule. The application has to offer the following views for the user interface: 1. PruefungView 2. PruefungsversuchView 3. VertragsartView 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 PruefungView must contain the following fields: - name: Behoerde type: Behoerde - name: Beruf type: Beruf - name: Beschreibung type: STRING - name: Gesetz type: Gesetz - name: Land type: Land - name: MaxVersuche type: LONG - name: Mindestpunktzahl type: LONG - name: MuendlichErforderlich type: BOOL - name: Name type: STRING - name: SchriftlichErforderlich type: BOOL The data source for the [Beruf] select control should be loaded from the relative URL: "/BerufService/beruf" (HTTP-GET) The data source for the [Gesetz] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) The data source for the [Behoerde] select control should be loaded from the relative URL: "/BehoerdeService/behoerde" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Pruefung entity should be loaded from the relative URL: "/PruefungService/pruefung/{id}" (HTTP-GET) If a new Pruefung entity has been created, the new entity should be posted to the relative URL: "/PruefungService/pruefung" (HTTP-POST) If an existing Pruefung entity has been updated, the modified entity should be sent to the relative URL: "/PruefungService/pruefung/{id}" (HTTP-PUT) If an existing Pruefung entity has to be deleted, the following relative URL should be called: "/PruefungService/pruefung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Pruefungsversuch columns: - column: VersuchNummer - column: Notizen - column: MuendlichBestanden - column: PunkteMuendlich - column: Person - column: SchriftlichBestanden - column: PunkteSchriftlich - column: Datum - column: Gesamtergebnis - column: Pruefung The table should have the title "Pruefungsversuchs" und the data must be loaded from the server with the following relative URL: "/PruefungService/pruefungsversuch/pruefung/{id}" 2. The PruefungsversuchView must contain the following fields: - name: Datum type: DATE - name: Gesamtergebnis type: STRING - name: MuendlichBestanden type: BOOL - name: Notizen type: STRING - name: Person type: Person - name: Pruefung type: Pruefung - name: PunkteMuendlich type: STRING - name: PunkteSchriftlich type: STRING - name: SchriftlichBestanden type: BOOL - name: VersuchNummer type: LONG The data source for the [Pruefung] select control should be loaded from the relative URL: "/PruefungService/pruefung" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Pruefungsversuch entity should be loaded from the relative URL: "/PruefungService/pruefungsversuch/{id}" (HTTP-GET) If a new Pruefungsversuch entity has been created, the new entity should be posted to the relative URL: "/PruefungService/pruefungsversuch" (HTTP-POST) If an existing Pruefungsversuch entity has been updated, the modified entity should be sent to the relative URL: "/PruefungService/pruefungsversuch/{id}" (HTTP-PUT) If an existing Pruefungsversuch entity has to be deleted, the following relative URL should be called: "/PruefungService/pruefungsversuch/{id}" (HTTP-DELETE) 3. The VertragsartView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Vertragsart entity should be loaded from the relative URL: "/PruefungService/vertragsart/{id}" (HTTP-GET) If a new Vertragsart entity has been created, the new entity should be posted to the relative URL: "/PruefungService/vertragsart" (HTTP-POST) If an existing Vertragsart entity has been updated, the modified entity should be sent to the relative URL: "/PruefungService/vertragsart/{id}" (HTTP-PUT) If an existing Vertragsart entity has to be deleted, the following relative URL should be called: "/PruefungService/vertragsart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Behandlungsvertrag columns: - column: NutztGebuehrenverzeichnis - column: DatumBeendigung - column: Gesetz - column: NutztGOAEAnalog - column: DatumUnterschrift - column: Behandlungsfall - column: Honorarvereinbarung - column: UeberschreitetGebuehrenrahmen - column: Vertragstext - column: Vertragsart The table should have the title "Behandlungsvertrags" und the data must be loaded from the server with the following relative URL: "/GesetzService/behandlungsvertrag/vertragsart/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum