Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
OrtsverbandApp
Please create a React-JS application for the OrtsverbandModule. The application has to offer the following views for the user interface: 1. AusruestungView 2. EinsatzBeteiligteEinheitView 3. MitgliedschaftView 4. OrtsverbandView 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 AusruestungView must contain the following fields: - name: Bergungsgruppe type: Bergungsgruppe - name: Beschreibung type: STRING - name: Fachgruppe type: Fachgruppe - name: Kategorie type: STRING - name: Logistikzentrum type: Logistikzentrum - name: Name type: STRING - name: Ortsverband type: Ortsverband - name: Seriennummer type: STRING - name: TechnischerZug type: TechnischerZug The data source for the [Fachgruppe] select control should be loaded from the relative URL: "/TechnischerZugService/fachgruppe" (HTTP-GET) The data source for the [Bergungsgruppe] select control should be loaded from the relative URL: "/TechnischerZugService/bergungsgruppe" (HTTP-GET) The data source for the [TechnischerZug] select control should be loaded from the relative URL: "/TechnischerZugService/technischerzug" (HTTP-GET) The data source for the [Ortsverband] select control should be loaded from the relative URL: "/OrtsverbandService/ortsverband" (HTTP-GET) The data source for the [Logistikzentrum] select control should be loaded from the relative URL: "/TechnischesHilfswerkService/logistikzentrum" (HTTP-GET) An existing Ausruestung entity should be loaded from the relative URL: "/OrtsverbandService/ausruestung/{id}" (HTTP-GET) If a new Ausruestung entity has been created, the new entity should be posted to the relative URL: "/OrtsverbandService/ausruestung" (HTTP-POST) If an existing Ausruestung entity has been updated, the modified entity should be sent to the relative URL: "/OrtsverbandService/ausruestung/{id}" (HTTP-PUT) If an existing Ausruestung entity has to be deleted, the following relative URL should be called: "/OrtsverbandService/ausruestung/{id}" (HTTP-DELETE) 2. The EinsatzBeteiligteEinheitView must contain the following fields: - name: Auslandseinheit type: Auslandseinheit - name: Bergungsgruppe type: Bergungsgruppe - name: Einsatz type: Einsatz - name: Fachgruppe type: Fachgruppe - name: Ortsverband type: Ortsverband - name: Rollenbeschreibung type: STRING - name: TechnischerZug type: TechnischerZug The data source for the [Einsatz] select control should be loaded from the relative URL: "/EinsatzartService/einsatz" (HTTP-GET) The data source for the [Auslandseinheit] select control should be loaded from the relative URL: "/TechnischesHilfswerkService/auslandseinheit" (HTTP-GET) The data source for the [Fachgruppe] select control should be loaded from the relative URL: "/TechnischerZugService/fachgruppe" (HTTP-GET) The data source for the [Bergungsgruppe] select control should be loaded from the relative URL: "/TechnischerZugService/bergungsgruppe" (HTTP-GET) The data source for the [TechnischerZug] select control should be loaded from the relative URL: "/TechnischerZugService/technischerzug" (HTTP-GET) The data source for the [Ortsverband] select control should be loaded from the relative URL: "/OrtsverbandService/ortsverband" (HTTP-GET) An existing EinsatzBeteiligteEinheit entity should be loaded from the relative URL: "/OrtsverbandService/einsatzbeteiligteeinheit/{id}" (HTTP-GET) If a new EinsatzBeteiligteEinheit entity has been created, the new entity should be posted to the relative URL: "/OrtsverbandService/einsatzbeteiligteeinheit" (HTTP-POST) If an existing EinsatzBeteiligteEinheit entity has been updated, the modified entity should be sent to the relative URL: "/OrtsverbandService/einsatzbeteiligteeinheit/{id}" (HTTP-PUT) If an existing EinsatzBeteiligteEinheit entity has to be deleted, the following relative URL should be called: "/OrtsverbandService/einsatzbeteiligteeinheit/{id}" (HTTP-DELETE) 3. The MitgliedschaftView must contain the following fields: - name: BisDatum type: DATE - name: IstAktiv type: BOOL - name: Ortsverband type: Ortsverband - name: Person type: Person - name: VonDatum type: DATE The data source for the [Ortsverband] select control should be loaded from the relative URL: "/OrtsverbandService/ortsverband" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Mitgliedschaft entity should be loaded from the relative URL: "/OrtsverbandService/mitgliedschaft/{id}" (HTTP-GET) If a new Mitgliedschaft entity has been created, the new entity should be posted to the relative URL: "/OrtsverbandService/mitgliedschaft" (HTTP-POST) If an existing Mitgliedschaft entity has been updated, the modified entity should be sent to the relative URL: "/OrtsverbandService/mitgliedschaft/{id}" (HTTP-PUT) If an existing Mitgliedschaft entity has to be deleted, the following relative URL should be called: "/OrtsverbandService/mitgliedschaft/{id}" (HTTP-DELETE) 4. The OrtsverbandView must contain the following fields: - name: Name type: STRING - name: Regionalstelle type: Regionalstelle - name: StandortBundesland type: STRING - name: StandortStadt type: STRING The data source for the [Regionalstelle] select control should be loaded from the relative URL: "/PersonService/regionalstelle" (HTTP-GET) An existing Ortsverband entity should be loaded from the relative URL: "/OrtsverbandService/ortsverband/{id}" (HTTP-GET) If a new Ortsverband entity has been created, the new entity should be posted to the relative URL: "/OrtsverbandService/ortsverband" (HTTP-POST) If an existing Ortsverband entity has been updated, the modified entity should be sent to the relative URL: "/OrtsverbandService/ortsverband/{id}" (HTTP-PUT) If an existing Ortsverband entity has to be deleted, the following relative URL should be called: "/OrtsverbandService/ortsverband/{id}" (HTTP-DELETE) Add a HTML table to the view with the following EinsatzBeteiligteEinheit columns: - column: Ortsverband - column: Auslandseinheit - column: TechnischerZug - column: Einsatz - column: Rollenbeschreibung - column: Fachgruppe - column: Bergungsgruppe The table should have the title "EinsatzBeteiligteEinheits" und the data must be loaded from the server with the following relative URL: "/OrtsverbandService/einsatzbeteiligteeinheit/ortsverband/{id}" Add a HTML table to the view with the following Ausruestung columns: - column: Seriennummer - column: Ortsverband - column: Name - column: Bergungsgruppe - column: Kategorie - column: TechnischerZug - column: Beschreibung - column: Logistikzentrum - column: Fachgruppe The table should have the title "Ausruestungs" und the data must be loaded from the server with the following relative URL: "/OrtsverbandService/ausruestung/ortsverband/{id}" Add a HTML table to the view with the following Personenrolle columns: - column: Regionalstelle - column: Ausbildungszentrum - column: Landesverband - column: Person - column: Rollenart - column: TechnischerZug - column: VonDatum - column: Ortsverband - column: BisDatum - column: Logistikzentrum - column: IstAktuell The table should have the title "Personenrolles" und the data must be loaded from the server with the following relative URL: "/PersonService/personenrolle/ortsverband/{id}" Add a HTML table to the view with the following TechnischerZug columns: - column: Ortsverband - column: Name The table should have the title "TechnischerZugs" und the data must be loaded from the server with the following relative URL: "/TechnischerZugService/technischerzug/ortsverband/{id}" Add a HTML table to the view with the following Mitgliedschaft columns: - column: Person - column: VonDatum - column: BisDatum - column: Ortsverband - column: IstAktiv The table should have the title "Mitgliedschafts" und the data must be loaded from the server with the following relative URL: "/OrtsverbandService/mitgliedschaft/ortsverband/{id}" Add a HTML table to the view with the following Person columns: - column: Eintrittsdatum - column: IstJugend - column: IstHauptamtlich - column: Vorname - column: IstEhrenamtlich - column: Geschlecht - column: Nachname - column: Ortsverband - column: Geburtsdatum The table should have the title "Persons" und the data must be loaded from the server with the following relative URL: "/PersonService/person/ortsverband/{id}" Add a HTML table to the view with the following Fahrzeug columns: - column: Ortsverband - column: Beschreibung - column: TechnischerZug - column: Fachgruppe - column: Bergungsgruppe - column: Baujahr - column: Funkrufname - column: Typ The table should have the title "Fahrzeugs" und the data must be loaded from the server with the following relative URL: "/TechnischerZugService/fahrzeug/ortsverband/{id}" Add a HTML table to the view with the following Jugendgruppe columns: - column: Ortsverband - column: Name The table should have the title "Jugendgruppes" und the data must be loaded from the server with the following relative URL: "/LandesverbandService/jugendgruppe/ortsverband/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum