Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
OrganisationApp
Please create a React-JS application for the OrganisationModule. The application has to offer the following views for the user interface: 1. OrganisationView 2. StandortView 3. WartungsereignisView 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 OrganisationView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING - name: Organisationstyp type: STRING An existing Organisation entity should be loaded from the relative URL: "/OrganisationService/organisation/{id}" (HTTP-GET) If a new Organisation entity has been created, the new entity should be posted to the relative URL: "/OrganisationService/organisation" (HTTP-POST) If an existing Organisation entity has been updated, the modified entity should be sent to the relative URL: "/OrganisationService/organisation/{id}" (HTTP-PUT) If an existing Organisation entity has to be deleted, the following relative URL should be called: "/OrganisationService/organisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Wartungsereignis columns: - column: Ereignistyp - column: Waehrung - column: DurchgefuehrtVon - column: Beschreibung - column: Kosten - column: Stadtmoebel - column: Datum The table should have the title "Wartungsereigniss" und the data must be loaded from the server with the following relative URL: "/OrganisationService/wartungsereignis/durchgefuehrtvon/{id}" Add a HTML table to the view with the following Streitfall columns: - column: Beschreibung - column: Betreff - column: Status - column: Gegenpartei - column: Ergebnis - column: Startdatum - column: Gemeinde - column: Enddatum The table should have the title "Streitfalls" und the data must be loaded from the server with the following relative URL: "/GemeindeService/streitfall/gegenpartei/{id}" Add a HTML table to the view with the following Standort columns: - column: EigentuemerOrganisation - column: Laengengrad - column: Standorttyp - column: Beschreibung - column: IstOeffentlich - column: Breitengrad - column: Name The table should have the title "Standorts" und the data must be loaded from the server with the following relative URL: "/OrganisationService/standort/eigentuemerorganisation/{id}" Add a HTML table to the view with the following Werbevertrag columns: - column: Notizen - column: Werbetreibender - column: Enddatum - column: Waehrung - column: Gebuehr - column: Werbeflaeche - column: Startdatum The table should have the title "Werbevertrags" und the data must be loaded from the server with the following relative URL: "/MoebelKategorieService/werbevertrag/werbetreibender/{id}" Add a HTML table to the view with the following PppVertrag columns: - column: BeinhaltetBau - column: Notizen - column: Beschreibung - column: Einnahmemodell - column: Enddatum - column: Gemeinde - column: PrivaterPartner - column: Startdatum - column: BeinhaltetWartung The table should have the title "PppVertrags" und the data must be loaded from the server with the following relative URL: "/GemeindeService/pppvertrag/privaterpartner/{id}" 2. The StandortView must contain the following fields: - name: Beschreibung type: STRING - name: Breitengrad type: STRING - name: EigentuemerOrganisation type: Organisation - name: IstOeffentlich type: BOOL - name: Laengengrad type: STRING - name: Name type: STRING - name: Standorttyp type: STRING The data source for the [EigentuemerOrganisation] select control should be loaded from the relative URL: "/OrganisationService/organisation" (HTTP-GET) An existing Standort entity should be loaded from the relative URL: "/OrganisationService/standort/{id}" (HTTP-GET) If a new Standort entity has been created, the new entity should be posted to the relative URL: "/OrganisationService/standort" (HTTP-POST) If an existing Standort entity has been updated, the modified entity should be sent to the relative URL: "/OrganisationService/standort/{id}" (HTTP-PUT) If an existing Standort entity has to be deleted, the following relative URL should be called: "/OrganisationService/standort/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Stadtmoebel columns: - column: Gestaltungsprojekt - column: Gestalter - column: Standort - column: Status - column: Moebeltyp - column: HatSicherheitsfunktion - column: Gemeinde - column: Installationsjahr - column: IstUnbeweglich - column: Standard - column: HatSmartfunktionen - column: Moebelgruppe - column: Name - column: HatWerbung - column: Beschreibung The table should have the title "Stadtmoebels" und the data must be loaded from the server with the following relative URL: "/StadtmoebelService/stadtmoebel/standort/{id}" 3. The WartungsereignisView must contain the following fields: - name: Beschreibung type: STRING - name: Datum type: DATE - name: DurchgefuehrtVon type: Organisation - name: Ereignistyp type: STRING - name: Kosten type: STRING - name: Stadtmoebel type: Stadtmoebel - name: Waehrung type: STRING The data source for the [Stadtmoebel] select control should be loaded from the relative URL: "/StadtmoebelService/stadtmoebel" (HTTP-GET) The data source for the [DurchgefuehrtVon] select control should be loaded from the relative URL: "/OrganisationService/organisation" (HTTP-GET) An existing Wartungsereignis entity should be loaded from the relative URL: "/OrganisationService/wartungsereignis/{id}" (HTTP-GET) If a new Wartungsereignis entity has been created, the new entity should be posted to the relative URL: "/OrganisationService/wartungsereignis" (HTTP-POST) If an existing Wartungsereignis entity has been updated, the modified entity should be sent to the relative URL: "/OrganisationService/wartungsereignis/{id}" (HTTP-PUT) If an existing Wartungsereignis entity has to be deleted, the following relative URL should be called: "/OrganisationService/wartungsereignis/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum