Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
AufsichtsbehoerdeApp
Please create a React-JS application for the AufsichtsbehoerdeModule. The application has to offer the following views for the user interface: 1. AufsichtsbehoerdeView 2. FahrlehrerlaubnisView 3. PruefFeststellungView 4. QualitaetskriteriumView 5. QualitaetspruefungView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 5 views are defined below. 1. The AufsichtsbehoerdeView must contain the following fields: - name: Land type: Land - name: Name type: STRING - name: Ort type: STRING - name: Postleitzahl type: STRING - name: Strasse type: STRING - name: TypCode type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Aufsichtsbehoerde entity should be loaded from the relative URL: "/AufsichtsbehoerdeService/aufsichtsbehoerde/{id}" (HTTP-GET) If a new Aufsichtsbehoerde entity has been created, the new entity should be posted to the relative URL: "/AufsichtsbehoerdeService/aufsichtsbehoerde" (HTTP-POST) If an existing Aufsichtsbehoerde entity has been updated, the modified entity should be sent to the relative URL: "/AufsichtsbehoerdeService/aufsichtsbehoerde/{id}" (HTTP-PUT) If an existing Aufsichtsbehoerde entity has to be deleted, the following relative URL should be called: "/AufsichtsbehoerdeService/aufsichtsbehoerde/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Qualitaetspruefung columns: - column: FahrschuleZweigstelle - column: Pruefungsart - column: HatPraxisbeobachtung - column: AnzahlAbweichungen - column: Ergebnis - column: HatTheoriebeobachtung - column: PruefDatum - column: Aufsichtsbehoerde The table should have the title "Qualitaetspruefungs" und the data must be loaded from the server with the following relative URL: "/AufsichtsbehoerdeService/qualitaetspruefung/aufsichtsbehoerde/{id}" Add a HTML table to the view with the following FahrschuleAufsicht columns: - column: StartDatum - column: EndDatum - column: Fahrschule - column: Aufsichtstyp - column: Aufsichtsbehoerde The table should have the title "FahrschuleAufsichts" und the data must be loaded from the server with the following relative URL: "/PersonService/fahrschuleaufsicht/aufsichtsbehoerde/{id}" Add a HTML table to the view with the following Fahrlehrerlaubnis columns: - column: IstGesperrt - column: ErlaubnisNummer - column: Fuehrerscheinklasse - column: Aufsichtsbehoerde - column: Fahrlehrer - column: GueltigBis - column: ErteiltAm The table should have the title "Fahrlehrerlaubniss" und the data must be loaded from the server with the following relative URL: "/AufsichtsbehoerdeService/fahrlehrerlaubnis/aufsichtsbehoerde/{id}" Add a HTML table to the view with the following Pruefung columns: - column: Versuch - column: Aufsichtsbehoerde - column: Pruefer - column: Anmeldung - column: OrtBeschreibung - column: Pruefungsart - column: ErgebnisCode - column: DatumZeit - column: DauerMinuten The table should have the title "Pruefungs" und the data must be loaded from the server with the following relative URL: "/FahrschuleService/pruefung/aufsichtsbehoerde/{id}" 2. The FahrlehrerlaubnisView must contain the following fields: - name: Aufsichtsbehoerde type: Aufsichtsbehoerde - name: ErlaubnisNummer type: STRING - name: ErteiltAm type: DATE - name: Fahrlehrer type: Fahrlehrer - name: Fuehrerscheinklasse type: Fuehrerscheinklasse - name: GueltigBis type: DATE - name: IstGesperrt type: BOOL The data source for the [Aufsichtsbehoerde] select control should be loaded from the relative URL: "/AufsichtsbehoerdeService/aufsichtsbehoerde" (HTTP-GET) The data source for the [Fahrlehrer] select control should be loaded from the relative URL: "/FahrlehrerService/fahrlehrer" (HTTP-GET) The data source for the [Fuehrerscheinklasse] select control should be loaded from the relative URL: "/LandService/fuehrerscheinklasse" (HTTP-GET) An existing Fahrlehrerlaubnis entity should be loaded from the relative URL: "/AufsichtsbehoerdeService/fahrlehrerlaubnis/{id}" (HTTP-GET) If a new Fahrlehrerlaubnis entity has been created, the new entity should be posted to the relative URL: "/AufsichtsbehoerdeService/fahrlehrerlaubnis" (HTTP-POST) If an existing Fahrlehrerlaubnis entity has been updated, the modified entity should be sent to the relative URL: "/AufsichtsbehoerdeService/fahrlehrerlaubnis/{id}" (HTTP-PUT) If an existing Fahrlehrerlaubnis entity has to be deleted, the following relative URL should be called: "/AufsichtsbehoerdeService/fahrlehrerlaubnis/{id}" (HTTP-DELETE) 3. The PruefFeststellungView must contain the following fields: - name: Kommentar type: STRING - name: Qualitaetskriterium type: Qualitaetskriterium - name: Qualitaetspruefung type: Qualitaetspruefung - name: Wert type: STRING The data source for the [Qualitaetspruefung] select control should be loaded from the relative URL: "/AufsichtsbehoerdeService/qualitaetspruefung" (HTTP-GET) The data source for the [Qualitaetskriterium] select control should be loaded from the relative URL: "/AufsichtsbehoerdeService/qualitaetskriterium" (HTTP-GET) An existing PruefFeststellung entity should be loaded from the relative URL: "/AufsichtsbehoerdeService/prueffeststellung/{id}" (HTTP-GET) If a new PruefFeststellung entity has been created, the new entity should be posted to the relative URL: "/AufsichtsbehoerdeService/prueffeststellung" (HTTP-POST) If an existing PruefFeststellung entity has been updated, the modified entity should be sent to the relative URL: "/AufsichtsbehoerdeService/prueffeststellung/{id}" (HTTP-PUT) If an existing PruefFeststellung entity has to be deleted, the following relative URL should be called: "/AufsichtsbehoerdeService/prueffeststellung/{id}" (HTTP-DELETE) 4. The QualitaetskriteriumView must contain the following fields: - name: BereichCode type: STRING - name: Beschreibung type: STRING An existing Qualitaetskriterium entity should be loaded from the relative URL: "/AufsichtsbehoerdeService/qualitaetskriterium/{id}" (HTTP-GET) If a new Qualitaetskriterium entity has been created, the new entity should be posted to the relative URL: "/AufsichtsbehoerdeService/qualitaetskriterium" (HTTP-POST) If an existing Qualitaetskriterium entity has been updated, the modified entity should be sent to the relative URL: "/AufsichtsbehoerdeService/qualitaetskriterium/{id}" (HTTP-PUT) If an existing Qualitaetskriterium entity has to be deleted, the following relative URL should be called: "/AufsichtsbehoerdeService/qualitaetskriterium/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PruefFeststellung columns: - column: Qualitaetspruefung - column: Kommentar - column: Qualitaetskriterium - column: Wert The table should have the title "PruefFeststellungs" und the data must be loaded from the server with the following relative URL: "/AufsichtsbehoerdeService/prueffeststellung/qualitaetskriterium/{id}" 5. The QualitaetspruefungView must contain the following fields: - name: AnzahlAbweichungen type: INT - name: Aufsichtsbehoerde type: Aufsichtsbehoerde - name: Ergebnis type: STRING - name: FahrschuleZweigstelle type: FahrschuleZweigstelle - name: HatPraxisbeobachtung type: BOOL - name: HatTheoriebeobachtung type: BOOL - name: PruefDatum type: DATE - name: Pruefungsart type: Pruefung The data source for the [Aufsichtsbehoerde] select control should be loaded from the relative URL: "/AufsichtsbehoerdeService/aufsichtsbehoerde" (HTTP-GET) The data source for the [FahrschuleZweigstelle] select control should be loaded from the relative URL: "/FahrschuleZweigstelleService/fahrschulezweigstelle" (HTTP-GET) The data source for the [Pruefungsart] select control should be loaded from the relative URL: "/FahrschuleService/pruefung" (HTTP-GET) An existing Qualitaetspruefung entity should be loaded from the relative URL: "/AufsichtsbehoerdeService/qualitaetspruefung/{id}" (HTTP-GET) If a new Qualitaetspruefung entity has been created, the new entity should be posted to the relative URL: "/AufsichtsbehoerdeService/qualitaetspruefung" (HTTP-POST) If an existing Qualitaetspruefung entity has been updated, the modified entity should be sent to the relative URL: "/AufsichtsbehoerdeService/qualitaetspruefung/{id}" (HTTP-PUT) If an existing Qualitaetspruefung entity has to be deleted, the following relative URL should be called: "/AufsichtsbehoerdeService/qualitaetspruefung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PruefFeststellung columns: - column: Qualitaetspruefung - column: Kommentar - column: Qualitaetskriterium - column: Wert The table should have the title "PruefFeststellungs" und the data must be loaded from the server with the following relative URL: "/AufsichtsbehoerdeService/prueffeststellung/qualitaetspruefung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum