Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
TagespflegepersonApp
Please create a React-JS application for the TagespflegepersonModule. The application has to offer the following views for the user interface: 1. GrossTagespflegeMitgliedschaftView 2. TagespflegepersonView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The GrossTagespflegeMitgliedschaftView must contain the following fields: - name: BisDatum type: DATE - name: GrossTagespflege type: GrossTagespflege - name: Rolle type: STRING - name: Tagespflegeperson type: Tagespflegeperson - name: VonDatum type: DATE The data source for the [Tagespflegeperson] select control should be loaded from the relative URL: "/TagespflegepersonService/tagespflegeperson" (HTTP-GET) The data source for the [GrossTagespflege] select control should be loaded from the relative URL: "/JugendamtService/grosstagespflege" (HTTP-GET) An existing GrossTagespflegeMitgliedschaft entity should be loaded from the relative URL: "/TagespflegepersonService/grosstagespflegemitgliedschaft/{id}" (HTTP-GET) If a new GrossTagespflegeMitgliedschaft entity has been created, the new entity should be posted to the relative URL: "/TagespflegepersonService/grosstagespflegemitgliedschaft" (HTTP-POST) If an existing GrossTagespflegeMitgliedschaft entity has been updated, the modified entity should be sent to the relative URL: "/TagespflegepersonService/grosstagespflegemitgliedschaft/{id}" (HTTP-PUT) If an existing GrossTagespflegeMitgliedschaft entity has to be deleted, the following relative URL should be called: "/TagespflegepersonService/grosstagespflegemitgliedschaft/{id}" (HTTP-DELETE) 2. The TagespflegepersonView must contain the following fields: - name: AktivBis type: DATE - name: AktivVon type: DATE - name: Bundesland type: Bundesland - name: Geschlecht type: STRING - name: HatPflegeerlaubnis type: BOOL - name: IstInGrossTagespflege type: BOOL - name: IstOeffentlichGefoerdert type: BOOL - name: IstPaedFachkraft type: BOOL - name: Jugendamt type: Jugendamt - name: Kommune type: Kommune - name: MaxKinder type: LONG - name: Nachname type: STRING - name: PflegeerlaubnisBis type: DATE - name: PflegeerlaubnisVon type: DATE - name: Staat type: Staat - name: Vorname type: STRING The data source for the [Jugendamt] select control should be loaded from the relative URL: "/JugendamtService/jugendamt" (HTTP-GET) 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 Tagespflegeperson entity should be loaded from the relative URL: "/TagespflegepersonService/tagespflegeperson/{id}" (HTTP-GET) If a new Tagespflegeperson entity has been created, the new entity should be posted to the relative URL: "/TagespflegepersonService/tagespflegeperson" (HTTP-POST) If an existing Tagespflegeperson entity has been updated, the modified entity should be sent to the relative URL: "/TagespflegepersonService/tagespflegeperson/{id}" (HTTP-PUT) If an existing Tagespflegeperson entity has to be deleted, the following relative URL should be called: "/TagespflegepersonService/tagespflegeperson/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PersonVersicherung columns: - column: BisDatum - column: Vertragsnummer - column: Versicherung - column: VonDatum - column: Tagespflegeperson The table should have the title "PersonVersicherungs" und the data must be loaded from the server with the following relative URL: "/StaatService/personversicherung/tagespflegeperson/{id}" Add a HTML table to the view with the following PersonQualifikation columns: - column: ZertifikatNummer - column: AbschlussDatum - column: Qualifikation - column: Tagespflegeperson - column: Anbieter The table should have the title "PersonQualifikations" und the data must be loaded from the server with the following relative URL: "/QualifikationService/personqualifikation/tagespflegeperson/{id}" Add a HTML table to the view with the following Betreuungsverhaeltnis columns: - column: Kind - column: Tagespflegeperson - column: IstOeffentlich - column: StundenProWoche - column: Raum - column: IstPrivat - column: EndDatum - column: Typ - column: StartDatum - column: Jugendamt The table should have the title "Betreuungsverhaeltniss" und the data must be loaded from the server with the following relative URL: "/KindService/betreuungsverhaeltnis/tagespflegeperson/{id}" Add a HTML table to the view with the following GrossTagespflegeMitgliedschaft columns: - column: VonDatum - column: GrossTagespflege - column: Tagespflegeperson - column: BisDatum - column: Rolle The table should have the title "GrossTagespflegeMitgliedschafts" und the data must be loaded from the server with the following relative URL: "/TagespflegepersonService/grosstagespflegemitgliedschaft/tagespflegeperson/{id}" Add a HTML table to the view with the following PersonKurs columns: - column: ZertifikatNummer - column: AbschlussDatum - column: Kurs - column: Tagespflegeperson The table should have the title "PersonKurss" und the data must be loaded from the server with the following relative URL: "/KursService/personkurs/tagespflegeperson/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum