Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
OrganisationseinheitApp
Please create a React-JS application for the OrganisationseinheitModule. The application has to offer the following views for the user interface: 1. DatensatzkategorieView 2. FlurstuecksAenderungView 3. OrganisationseinheitView 4. VermessungView 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 DatensatzkategorieView must contain the following fields: - name: Beschreibung type: STRING - name: Code type: STRING - name: ErzeugtAm type: DATE - name: Name type: STRING An existing Datensatzkategorie entity should be loaded from the relative URL: "/OrganisationseinheitService/datensatzkategorie/{id}" (HTTP-GET) If a new Datensatzkategorie entity has been created, the new entity should be posted to the relative URL: "/OrganisationseinheitService/datensatzkategorie" (HTTP-POST) If an existing Datensatzkategorie entity has been updated, the modified entity should be sent to the relative URL: "/OrganisationseinheitService/datensatzkategorie/{id}" (HTTP-PUT) If an existing Datensatzkategorie entity has to be deleted, the following relative URL should be called: "/OrganisationseinheitService/datensatzkategorie/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Geodatensatz columns: - column: VerantwortlicheOrganisationseinheit - column: Kurzname - column: Aktualisierungszyklus - column: ErzeugtAm - column: Name - column: Datensatzkategorie - column: Raumbezugssystem - column: Beschreibung The table should have the title "Geodatensatzs" und the data must be loaded from the server with the following relative URL: "/GeodatensatzService/geodatensatz/datensatzkategorie/{id}" 2. The FlurstuecksAenderungView must contain the following fields: - name: Aenderungsart type: STRING - name: AlteFlaecheQm type: DOUBLE - name: Beschreibung type: STRING - name: ErzeugtAm type: DATE - name: Flurstueck type: Flurstueck - name: NeueFlaecheQm type: DOUBLE - name: Vermessung type: Vermessung - name: WirksamAm type: DATE The data source for the [Flurstueck] select control should be loaded from the relative URL: "/FlurstueckService/flurstueck" (HTTP-GET) The data source for the [Vermessung] select control should be loaded from the relative URL: "/OrganisationseinheitService/vermessung" (HTTP-GET) An existing FlurstuecksAenderung entity should be loaded from the relative URL: "/OrganisationseinheitService/flurstuecksaenderung/{id}" (HTTP-GET) If a new FlurstuecksAenderung entity has been created, the new entity should be posted to the relative URL: "/OrganisationseinheitService/flurstuecksaenderung" (HTTP-POST) If an existing FlurstuecksAenderung entity has been updated, the modified entity should be sent to the relative URL: "/OrganisationseinheitService/flurstuecksaenderung/{id}" (HTTP-PUT) If an existing FlurstuecksAenderung entity has to be deleted, the following relative URL should be called: "/OrganisationseinheitService/flurstuecksaenderung/{id}" (HTTP-DELETE) 3. The OrganisationseinheitView must contain the following fields: - name: Behoerde type: Behoerde - name: Beschreibung type: STRING - name: Code type: STRING - name: Email type: STRING - name: ErzeugtAm type: DATE - name: Name type: STRING - name: Telefon type: STRING The data source for the [Behoerde] select control should be loaded from the relative URL: "/CopernicusProduktService/behoerde" (HTTP-GET) An existing Organisationseinheit entity should be loaded from the relative URL: "/OrganisationseinheitService/organisationseinheit/{id}" (HTTP-GET) If a new Organisationseinheit entity has been created, the new entity should be posted to the relative URL: "/OrganisationseinheitService/organisationseinheit" (HTTP-POST) If an existing Organisationseinheit entity has been updated, the modified entity should be sent to the relative URL: "/OrganisationseinheitService/organisationseinheit/{id}" (HTTP-PUT) If an existing Organisationseinheit entity has to be deleted, the following relative URL should be called: "/OrganisationseinheitService/organisationseinheit/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Vermessung columns: - column: Vermessungsart - column: Organisationseinheit - column: ErzeugtAm - column: Flurstueck - column: DurchgefuehrtVon - column: Vorgangsnummer - column: Beginn - column: Ende - column: Status - column: Auftraggeber The table should have the title "Vermessungs" und the data must be loaded from the server with the following relative URL: "/OrganisationseinheitService/vermessung/organisationseinheit/{id}" Add a HTML table to the view with the following Benutzerkonto columns: - column: Benutzername - column: Email - column: ErzeugtAm - column: Organisationseinheit - column: Anzeigename - column: Aktiv The table should have the title "Benutzerkontos" und the data must be loaded from the server with the following relative URL: "/BenutzerkontoService/benutzerkonto/organisationseinheit/{id}" Add a HTML table to the view with the following Geodatensatz columns: - column: VerantwortlicheOrganisationseinheit - column: Kurzname - column: Aktualisierungszyklus - column: ErzeugtAm - column: Name - column: Datensatzkategorie - column: Raumbezugssystem - column: Beschreibung The table should have the title "Geodatensatzs" und the data must be loaded from the server with the following relative URL: "/GeodatensatzService/geodatensatz/verantwortlicheorganisationseinheit/{id}" Add a HTML table to the view with the following Thema columns: - column: Slug - column: ErzeugtAm - column: Titel - column: Aktiv - column: Beschreibung - column: Organisationseinheit The table should have the title "Themas" und the data must be loaded from the server with the following relative URL: "/VermessungsartService/thema/organisationseinheit/{id}" 4. The VermessungView must contain the following fields: - name: Auftraggeber type: STRING - name: Beginn type: DATE - name: DurchgefuehrtVon type: STRING - name: Ende type: DATE - name: ErzeugtAm type: DATE - name: Flurstueck type: Flurstueck - name: Organisationseinheit type: Organisationseinheit - name: Status type: STRING - name: Vermessungsart type: Vermessungsart - name: Vorgangsnummer type: STRING The data source for the [Flurstueck] select control should be loaded from the relative URL: "/FlurstueckService/flurstueck" (HTTP-GET) The data source for the [Organisationseinheit] select control should be loaded from the relative URL: "/OrganisationseinheitService/organisationseinheit" (HTTP-GET) The data source for the [Vermessungsart] select control should be loaded from the relative URL: "/VermessungsartService/vermessungsart" (HTTP-GET) An existing Vermessung entity should be loaded from the relative URL: "/OrganisationseinheitService/vermessung/{id}" (HTTP-GET) If a new Vermessung entity has been created, the new entity should be posted to the relative URL: "/OrganisationseinheitService/vermessung" (HTTP-POST) If an existing Vermessung entity has been updated, the modified entity should be sent to the relative URL: "/OrganisationseinheitService/vermessung/{id}" (HTTP-PUT) If an existing Vermessung entity has to be deleted, the following relative URL should be called: "/OrganisationseinheitService/vermessung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following FlurstuecksAenderung columns: - column: NeueFlaecheQm - column: AlteFlaecheQm - column: Flurstueck - column: Beschreibung - column: Vermessung - column: Aenderungsart - column: ErzeugtAm - column: WirksamAm The table should have the title "FlurstuecksAenderungs" und the data must be loaded from the server with the following relative URL: "/OrganisationseinheitService/flurstuecksaenderung/vermessung/{id}" Add a HTML table to the view with the following Vermessungsdokument columns: - column: Titel - column: ErzeugtAm - column: Datei - column: Dokumenttyp - column: Vermessung The table should have the title "Vermessungsdokuments" und the data must be loaded from the server with the following relative URL: "/CopernicusProduktService/vermessungsdokument/vermessung/{id}" Add a HTML table to the view with the following Gebaeudemessung columns: - column: GemesseneGrundflaecheQm - column: Messdatum - column: ErzeugtAm - column: Gebaeude - column: Vermessung - column: HoeheM The table should have the title "Gebaeudemessungs" und the data must be loaded from the server with the following relative URL: "/FlurstueckService/gebaeudemessung/vermessung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum