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: Adresse type: Adresse - name: AlleinerziehendFlag type: BOOL - name: HaushaltCode type: STRING - name: Haushaltsgroesse type: LONG - name: KinderAnzahl type: LONG - name: LokaleTafel type: LokaleTafel The data source for the [Adresse] select control should be loaded from the relative URL: "/AdresseService/adresse" (HTTP-GET) The data source for the [LokaleTafel] select control should be loaded from the relative URL: "/LokaleTafelService/lokaletafel" (HTTP-GET) An existing Haushalt entity should be loaded from the relative URL: "/LokaleTafelService/haushalt/{id}" (HTTP-GET) If a new Haushalt entity has been created, the new entity should be posted to the relative URL: "/LokaleTafelService/haushalt" (HTTP-POST) If an existing Haushalt entity has been updated, the modified entity should be sent to the relative URL: "/LokaleTafelService/haushalt/{id}" (HTTP-PUT) If an existing Haushalt entity has to be deleted, the following relative URL should be called: "/LokaleTafelService/haushalt/{id}" (HTTP-DELETE) Add a HTML table to the view with the following AusgabeTeilnahme columns: - column: AusgabeTermin - column: Haushalt - column: WarteschlangenNummer - column: Kostenbeitrag - column: GewichtErhaltenKg The table should have the title "AusgabeTeilnahmes" und the data must be loaded from the server with the following relative URL: "/PartnerOrganisationService/ausgabeteilnahme/haushalt/{id}" Add a HTML table to the view with the following Person columns: - column: Vorname - column: Geschlecht - column: Geburtsdatum - column: Haushalt - column: Besonderheiten - column: Nachname The table should have the title "Persons" und the data must be loaded from the server with the following relative URL: "/ProgrammService/person/haushalt/{id}" Add a HTML table to the view with the following Berechtigungspruefung columns: - column: Mitarbeiter - column: Pruefdatum - column: Haushalt - column: Notizen - column: EinkommenGeprueftFlag - column: ErgebnisStatus - column: GueltigBis - column: Ehrenamtlicher The table should have the title "Berechtigungspruefungs" und the data must be loaded from the server with the following relative URL: "/MitarbeiterService/berechtigungspruefung/haushalt/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum