Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
HaushaltView
Please create a React-JS view called "HaushaltView" for the fields of the Haushalt entity. The HaushaltView must contain the following fields: - name: Adresse1 type: STRING - name: Adresse2 type: STRING - name: Bundesland type: Bundesland - name: Einkommensstufe type: STRING - name: Kommune type: Kommune - name: Ort type: STRING - name: Postleitzahl type: STRING - name: Staat type: Staat The data source for the [Bundesland] select control should be loaded from the relative URL: "/BundeslandService/bundesland" (HTTP-GET) The data source for the [Staat] select control should be loaded from the relative URL: "/StaatService/staat" (HTTP-GET) The data source for the [Kommune] select control should be loaded from the relative URL: "/KommuneService/kommune" (HTTP-GET) An existing Haushalt entity should be loaded from the relative URL: "/KommuneService/haushalt/{id}" (HTTP-GET) If a new Haushalt entity has been created, the new entity should be posted to the relative URL: "/KommuneService/haushalt" (HTTP-POST) If an existing Haushalt entity has been updated, the modified entity should be sent to the relative URL: "/KommuneService/haushalt/{id}" (HTTP-PUT) If an existing Haushalt entity has to be deleted, the following relative URL should be called: "/KommuneService/haushalt/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Elternteil columns: - column: Nachname - column: Email - column: Telefon - column: Vorname - column: HatSorgerecht - column: Haushalt The table should have the title "Elternteils" und the data must be loaded from the server with the following relative URL: "/ElternteilService/elternteil/haushalt/{id}" Add a HTML table to the view with the following Elternbeitrag columns: - column: ZahlerTyp - column: Betrag - column: Waehrung - column: IstEinkommensabhaengig - column: Haushalt - column: Betreuungsverhaeltnis - column: VonDatum - column: BisDatum The table should have the title "Elternbeitrags" und the data must be loaded from the server with the following relative URL: "/KommuneService/elternbeitrag/haushalt/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum