Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
TraegerorganisationApp
Please create a React-JS application for the TraegerorganisationModule. The application has to offer the following views for the user interface: 1. TraegerorganisationView 2. VertragView 3. WohnanlageView 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 TraegerorganisationView must contain the following fields: - name: Beschreibung type: STRING - name: Land type: STRING - name: Name type: STRING - name: Typ type: STRING An existing Traegerorganisation entity should be loaded from the relative URL: "/TraegerorganisationService/traegerorganisation/{id}" (HTTP-GET) If a new Traegerorganisation entity has been created, the new entity should be posted to the relative URL: "/TraegerorganisationService/traegerorganisation" (HTTP-POST) If an existing Traegerorganisation entity has been updated, the modified entity should be sent to the relative URL: "/TraegerorganisationService/traegerorganisation/{id}" (HTTP-PUT) If an existing Traegerorganisation entity has to be deleted, the following relative URL should be called: "/TraegerorganisationService/traegerorganisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Vertrag columns: - column: Vertragstyp - column: Traegerorganisation - column: Enddatum - column: Wohnung - column: Bewohner - column: Wohnform - column: Startdatum - column: Notizen The table should have the title "Vertrags" und the data must be loaded from the server with the following relative URL: "/TraegerorganisationService/vertrag/traegerorganisation/{id}" Add a HTML table to the view with the following Wohnanlage columns: - column: Adresszeile - column: Traegerorganisation - column: Name - column: IstSeniorenanlage - column: Land - column: Stadt - column: HatGemeinschaftsraeume - column: IstBarrierefrei - column: Postleitzahl - column: HatServicebuero - column: Beschreibung The table should have the title "Wohnanlages" und the data must be loaded from the server with the following relative URL: "/TraegerorganisationService/wohnanlage/traegerorganisation/{id}" Add a HTML table to the view with the following Mitarbeiter columns: - column: Traegerorganisation - column: Beruf - column: Person - column: Qualifikation The table should have the title "Mitarbeiters" und the data must be loaded from the server with the following relative URL: "/MitarbeiterService/mitarbeiter/traegerorganisation/{id}" 2. The VertragView must contain the following fields: - name: Bewohner type: Bewohner - name: Enddatum type: DATE - name: Notizen type: STRING - name: Startdatum type: DATE - name: Traegerorganisation type: Traegerorganisation - name: Vertragstyp type: STRING - name: Wohnform type: Wohnform - name: Wohnung type: Wohnung The data source for the [Traegerorganisation] select control should be loaded from the relative URL: "/TraegerorganisationService/traegerorganisation" (HTTP-GET) The data source for the [Wohnform] select control should be loaded from the relative URL: "/WohnformService/wohnform" (HTTP-GET) The data source for the [Wohnung] select control should be loaded from the relative URL: "/WohnungService/wohnung" (HTTP-GET) The data source for the [Bewohner] select control should be loaded from the relative URL: "/BewohnerService/bewohner" (HTTP-GET) An existing Vertrag entity should be loaded from the relative URL: "/TraegerorganisationService/vertrag/{id}" (HTTP-GET) If a new Vertrag entity has been created, the new entity should be posted to the relative URL: "/TraegerorganisationService/vertrag" (HTTP-POST) If an existing Vertrag entity has been updated, the modified entity should be sent to the relative URL: "/TraegerorganisationService/vertrag/{id}" (HTTP-PUT) If an existing Vertrag entity has to be deleted, the following relative URL should be called: "/TraegerorganisationService/vertrag/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Vertragsleistung columns: - column: Vertrag - column: IstVerpflichtend - column: Leistung The table should have the title "Vertragsleistungs" und the data must be loaded from the server with the following relative URL: "/LeistungService/vertragsleistung/vertrag/{id}" 3. The WohnanlageView must contain the following fields: - name: Adresszeile type: STRING - name: Beschreibung type: STRING - name: HatGemeinschaftsraeume type: BOOL - name: HatServicebuero type: BOOL - name: IstBarrierefrei type: BOOL - name: IstSeniorenanlage type: BOOL - name: Land type: STRING - name: Name type: STRING - name: Postleitzahl type: STRING - name: Stadt type: STRING - name: Traegerorganisation type: Traegerorganisation The data source for the [Traegerorganisation] select control should be loaded from the relative URL: "/TraegerorganisationService/traegerorganisation" (HTTP-GET) An existing Wohnanlage entity should be loaded from the relative URL: "/TraegerorganisationService/wohnanlage/{id}" (HTTP-GET) If a new Wohnanlage entity has been created, the new entity should be posted to the relative URL: "/TraegerorganisationService/wohnanlage" (HTTP-POST) If an existing Wohnanlage entity has been updated, the modified entity should be sent to the relative URL: "/TraegerorganisationService/wohnanlage/{id}" (HTTP-PUT) If an existing Wohnanlage entity has to be deleted, the following relative URL should be called: "/TraegerorganisationService/wohnanlage/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Gruppentreffen columns: - column: Wohnanlage - column: Beschreibung - column: Datum - column: Thema The table should have the title "Gruppentreffens" und the data must be loaded from the server with the following relative URL: "/GruppentreffenService/gruppentreffen/wohnanlage/{id}" Add a HTML table to the view with the following Zertifizierung columns: - column: IstPuezertifizierung - column: Ablaufdatum - column: Norm - column: Ausgabedatum - column: Notizen - column: Wohnanlage - column: Zertifizierungsstelle The table should have the title "Zertifizierungs" und the data must be loaded from the server with the following relative URL: "/ZertifizierungsstelleService/zertifizierung/wohnanlage/{id}" Add a HTML table to the view with the following Wohnung columns: - column: IstMietobjekt - column: Beschreibung - column: IstRollstuhlgerecht - column: IstEigentum - column: Wohnanlage - column: Etage - column: IstBarrierefrei - column: Wohnungsnummer - column: FlaecheQm The table should have the title "Wohnungs" und the data must be loaded from the server with the following relative URL: "/WohnungService/wohnung/wohnanlage/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum