Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
AdresseApp
Please create a React-JS application for the AdresseModule. The application has to offer the following views for the user interface: 1. AdresseView 2. KooperationsvereinbarungView 3. SpenderFilialeView 4. SpenderOrganisationView 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 AdresseView must contain the following fields: - name: Hausnummer type: STRING - name: Postleitzahl type: STRING - name: Stadt type: Stadt - name: Strasse type: STRING - name: Zusatz type: STRING The data source for the [Stadt] select control should be loaded from the relative URL: "/StandortService/stadt" (HTTP-GET) An existing Adresse entity should be loaded from the relative URL: "/AdresseService/adresse/{id}" (HTTP-GET) If a new Adresse entity has been created, the new entity should be posted to the relative URL: "/AdresseService/adresse" (HTTP-POST) If an existing Adresse entity has been updated, the modified entity should be sent to the relative URL: "/AdresseService/adresse/{id}" (HTTP-PUT) If an existing Adresse entity has to be deleted, the following relative URL should be called: "/AdresseService/adresse/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Standort columns: - column: Adresse - column: LokaleTafel - column: Telefon - column: StandortTyp - column: Bezeichnung - column: Email The table should have the title "Standorts" und the data must be loaded from the server with the following relative URL: "/StandortService/standort/adresse/{id}" Add a HTML table to the view with the following Haushalt columns: - column: Haushaltsgroesse - column: LokaleTafel - column: AlleinerziehendFlag - column: KinderAnzahl - column: Adresse - column: HaushaltCode The table should have the title "Haushalts" und the data must be loaded from the server with the following relative URL: "/LokaleTafelService/haushalt/adresse/{id}" Add a HTML table to the view with the following SpenderFiliale columns: - column: Name - column: FilialCode - column: SpenderOrganisation - column: Telefon - column: Adresse The table should have the title "SpenderFiliales" und the data must be loaded from the server with the following relative URL: "/AdresseService/spenderfiliale/adresse/{id}" Add a HTML table to the view with the following PartnerOrganisation columns: - column: Organisationstyp - column: Adresse - column: Email - column: AnsprechpartnerName - column: Name - column: Telefon The table should have the title "PartnerOrganisations" und the data must be loaded from the server with the following relative URL: "/PartnerOrganisationService/partnerorganisation/adresse/{id}" Add a HTML table to the view with the following SpenderOrganisation columns: - column: Adresse - column: SpenderTyp - column: Name - column: Steuernummer The table should have the title "SpenderOrganisations" und the data must be loaded from the server with the following relative URL: "/AdresseService/spenderorganisation/adresse/{id}" 2. The KooperationsvereinbarungView must contain the following fields: - name: BisDatum type: DATE - name: Bundesverband type: Bundesverband - name: LokaleTafel type: LokaleTafel - name: Notizen type: STRING - name: PartnerOrganisation type: PartnerOrganisation - name: SpenderOrganisation type: SpenderOrganisation - name: Titel type: STRING - name: VereinbarungsTyp type: STRING - name: VonDatum type: DATE The data source for the [Bundesverband] select control should be loaded from the relative URL: "/BundesverbandService/bundesverband" (HTTP-GET) The data source for the [PartnerOrganisation] select control should be loaded from the relative URL: "/PartnerOrganisationService/partnerorganisation" (HTTP-GET) The data source for the [SpenderOrganisation] select control should be loaded from the relative URL: "/AdresseService/spenderorganisation" (HTTP-GET) The data source for the [LokaleTafel] select control should be loaded from the relative URL: "/LokaleTafelService/lokaletafel" (HTTP-GET) An existing Kooperationsvereinbarung entity should be loaded from the relative URL: "/AdresseService/kooperationsvereinbarung/{id}" (HTTP-GET) If a new Kooperationsvereinbarung entity has been created, the new entity should be posted to the relative URL: "/AdresseService/kooperationsvereinbarung" (HTTP-POST) If an existing Kooperationsvereinbarung entity has been updated, the modified entity should be sent to the relative URL: "/AdresseService/kooperationsvereinbarung/{id}" (HTTP-PUT) If an existing Kooperationsvereinbarung entity has to be deleted, the following relative URL should be called: "/AdresseService/kooperationsvereinbarung/{id}" (HTTP-DELETE) 3. The SpenderFilialeView must contain the following fields: - name: Adresse type: Adresse - name: FilialCode type: STRING - name: Name type: STRING - name: SpenderOrganisation type: SpenderOrganisation - name: Telefon type: STRING The data source for the [Adresse] select control should be loaded from the relative URL: "/AdresseService/adresse" (HTTP-GET) The data source for the [SpenderOrganisation] select control should be loaded from the relative URL: "/AdresseService/spenderorganisation" (HTTP-GET) An existing SpenderFiliale entity should be loaded from the relative URL: "/AdresseService/spenderfiliale/{id}" (HTTP-GET) If a new SpenderFiliale entity has been created, the new entity should be posted to the relative URL: "/AdresseService/spenderfiliale" (HTTP-POST) If an existing SpenderFiliale entity has been updated, the modified entity should be sent to the relative URL: "/AdresseService/spenderfiliale/{id}" (HTTP-PUT) If an existing SpenderFiliale entity has to be deleted, the following relative URL should be called: "/AdresseService/spenderfiliale/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Abholstopp columns: - column: Lager - column: StoppTyp - column: Route - column: Reihenfolge - column: SpenderFiliale The table should have the title "Abholstopps" und the data must be loaded from the server with the following relative URL: "/LagerService/abholstopp/spenderfiliale/{id}" Add a HTML table to the view with the following Spende columns: - column: LokaleTafel - column: SpendenDatumZeit - column: GesamtgewichtKg - column: SpenderFiliale - column: Notizen - column: SpenderOrganisation - column: HerkunftTyp The table should have the title "Spendes" und the data must be loaded from the server with the following relative URL: "/SpendeService/spende/spenderfiliale/{id}" 4. The SpenderOrganisationView must contain the following fields: - name: Adresse type: Adresse - name: Name type: STRING - name: SpenderTyp type: STRING - name: Steuernummer type: STRING The data source for the [Adresse] select control should be loaded from the relative URL: "/AdresseService/adresse" (HTTP-GET) An existing SpenderOrganisation entity should be loaded from the relative URL: "/AdresseService/spenderorganisation/{id}" (HTTP-GET) If a new SpenderOrganisation entity has been created, the new entity should be posted to the relative URL: "/AdresseService/spenderorganisation" (HTTP-POST) If an existing SpenderOrganisation entity has been updated, the modified entity should be sent to the relative URL: "/AdresseService/spenderorganisation/{id}" (HTTP-PUT) If an existing SpenderOrganisation entity has to be deleted, the following relative URL should be called: "/AdresseService/spenderorganisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SpenderFiliale columns: - column: Name - column: FilialCode - column: SpenderOrganisation - column: Telefon - column: Adresse The table should have the title "SpenderFiliales" und the data must be loaded from the server with the following relative URL: "/AdresseService/spenderfiliale/spenderorganisation/{id}" Add a HTML table to the view with the following Kooperationsvereinbarung columns: - column: Notizen - column: PartnerOrganisation - column: VereinbarungsTyp - column: SpenderOrganisation - column: LokaleTafel - column: Bundesverband - column: Titel - column: BisDatum - column: VonDatum The table should have the title "Kooperationsvereinbarungs" und the data must be loaded from the server with the following relative URL: "/AdresseService/kooperationsvereinbarung/spenderorganisation/{id}" Add a HTML table to the view with the following Spende columns: - column: LokaleTafel - column: SpendenDatumZeit - column: GesamtgewichtKg - column: SpenderFiliale - column: Notizen - column: SpenderOrganisation - column: HerkunftTyp The table should have the title "Spendes" und the data must be loaded from the server with the following relative URL: "/SpendeService/spende/spenderorganisation/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum