Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PflegegradApp
Please create a React-JS application for the PflegegradModule. The application has to offer the following views for the user interface: 1. PflegegradView 2. PflegeheimketteZuordnungView 3. PflegesatzvereinbarungView 4. VersorgungsvertragView 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 PflegegradView must contain the following fields: - name: Beschreibung type: STRING - name: Bezeichnung type: STRING - name: Code type: INT - name: GueltigAb type: DATE - name: LeistungStationaerMonat type: DOUBLE An existing Pflegegrad entity should be loaded from the relative URL: "/PflegegradService/pflegegrad/{id}" (HTTP-GET) If a new Pflegegrad entity has been created, the new entity should be posted to the relative URL: "/PflegegradService/pflegegrad" (HTTP-POST) If an existing Pflegegrad entity has been updated, the modified entity should be sent to the relative URL: "/PflegegradService/pflegegrad/{id}" (HTTP-PUT) If an existing Pflegegrad entity has to be deleted, the following relative URL should be called: "/PflegegradService/pflegegrad/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Pflegekassenleistung columns: - column: Pflegegrad - column: PauschaleMonat - column: GueltigBis - column: Heimvertrag - column: GueltigAb The table should have the title "Pflegekassenleistungs" und the data must be loaded from the server with the following relative URL: "/PflegeartService/pflegekassenleistung/pflegegrad/{id}" Add a HTML table to the view with the following Bewohner columns: - column: Pflegeheim - column: Sterbedatum - column: Geburtsdatum - column: Sozialhilfetraeger - column: Pflegekasse - column: Auszugsdatum - column: AktuellerPflegestatus - column: HatAngehoerigeDieZahlen - column: Einzugsdatum - column: Geschlecht - column: Pflegegrad - column: Nachname - column: Vorname The table should have the title "Bewohners" und the data must be loaded from the server with the following relative URL: "/BewohnerService/bewohner/pflegegrad/{id}" Add a HTML table to the view with the following Pflegesatzvereinbarung columns: - column: PflegesatzProTag - column: Versorgungsvertrag - column: GueltigAb - column: Pflegegrad - column: PflegesatzProMonat - column: GueltigBis The table should have the title "Pflegesatzvereinbarungs" und the data must be loaded from the server with the following relative URL: "/PflegegradService/pflegesatzvereinbarung/pflegegrad/{id}" Add a HTML table to the view with the following Kostenzusammensetzung columns: - column: Pflegeheim - column: GueltigBis - column: Pflegegrad - column: PflegesatzMonat - column: UnterkunftVerpflegungMonat - column: AusbildungsumlageMonat - column: DurchschnittlicherEigenanteilMonat - column: GueltigAb - column: EinheitlicherEigenanteilMonat - column: InvestitionskostenMonat The table should have the title "Kostenzusammensetzungs" und the data must be loaded from the server with the following relative URL: "/PflegeheimService/kostenzusammensetzung/pflegegrad/{id}" Add a HTML table to the view with the following Personalschluessel columns: - column: Bundesland - column: GueltigBis - column: Pflegegrad - column: VerhaeltnisBewohnerProKraft - column: Pflegeheim - column: Personalart - column: GueltigAb The table should have the title "Personalschluessels" und the data must be loaded from the server with the following relative URL: "/PflegeheimService/personalschluessel/pflegegrad/{id}" 2. The PflegeheimketteZuordnungView must contain the following fields: - name: Beginn type: DATE - name: Ende type: DATE - name: Pflegeheim type: Pflegeheim - name: Pflegeheimkette type: Pflegeheim The data source for the [Pflegeheim] select control should be loaded from the relative URL: "/PflegeheimService/pflegeheim" (HTTP-GET) The data source for the [Pflegeheimkette] select control should be loaded from the relative URL: "/PflegeheimService/pflegeheim" (HTTP-GET) An existing PflegeheimketteZuordnung entity should be loaded from the relative URL: "/PflegegradService/pflegeheimkettezuordnung/{id}" (HTTP-GET) If a new PflegeheimketteZuordnung entity has been created, the new entity should be posted to the relative URL: "/PflegegradService/pflegeheimkettezuordnung" (HTTP-POST) If an existing PflegeheimketteZuordnung entity has been updated, the modified entity should be sent to the relative URL: "/PflegegradService/pflegeheimkettezuordnung/{id}" (HTTP-PUT) If an existing PflegeheimketteZuordnung entity has to be deleted, the following relative URL should be called: "/PflegegradService/pflegeheimkettezuordnung/{id}" (HTTP-DELETE) 3. The PflegesatzvereinbarungView must contain the following fields: - name: GueltigAb type: DATE - name: GueltigBis type: DATE - name: Pflegegrad type: Pflegegrad - name: PflegesatzProMonat type: DOUBLE - name: PflegesatzProTag type: DOUBLE - name: Versorgungsvertrag type: Versorgungsvertrag The data source for the [Pflegegrad] select control should be loaded from the relative URL: "/PflegegradService/pflegegrad" (HTTP-GET) The data source for the [Versorgungsvertrag] select control should be loaded from the relative URL: "/PflegegradService/versorgungsvertrag" (HTTP-GET) An existing Pflegesatzvereinbarung entity should be loaded from the relative URL: "/PflegegradService/pflegesatzvereinbarung/{id}" (HTTP-GET) If a new Pflegesatzvereinbarung entity has been created, the new entity should be posted to the relative URL: "/PflegegradService/pflegesatzvereinbarung" (HTTP-POST) If an existing Pflegesatzvereinbarung entity has been updated, the modified entity should be sent to the relative URL: "/PflegegradService/pflegesatzvereinbarung/{id}" (HTTP-PUT) If an existing Pflegesatzvereinbarung entity has to be deleted, the following relative URL should be called: "/PflegegradService/pflegesatzvereinbarung/{id}" (HTTP-DELETE) 4. The VersorgungsvertragView must contain the following fields: - name: Pflegeheim type: Pflegeheim - name: Pflegekassenverband type: Pflegekassenverband - name: Versorgungsart type: STRING - name: Vertragsbeginn type: DATE - name: Vertragsende type: DATE - name: Zugelassen type: BOOL The data source for the [Pflegeheim] select control should be loaded from the relative URL: "/PflegeheimService/pflegeheim" (HTTP-GET) The data source for the [Pflegekassenverband] select control should be loaded from the relative URL: "/BundeslandService/pflegekassenverband" (HTTP-GET) An existing Versorgungsvertrag entity should be loaded from the relative URL: "/PflegegradService/versorgungsvertrag/{id}" (HTTP-GET) If a new Versorgungsvertrag entity has been created, the new entity should be posted to the relative URL: "/PflegegradService/versorgungsvertrag" (HTTP-POST) If an existing Versorgungsvertrag entity has been updated, the modified entity should be sent to the relative URL: "/PflegegradService/versorgungsvertrag/{id}" (HTTP-PUT) If an existing Versorgungsvertrag entity has to be deleted, the following relative URL should be called: "/PflegegradService/versorgungsvertrag/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Pflegesatzvereinbarung columns: - column: PflegesatzProTag - column: Versorgungsvertrag - column: GueltigAb - column: Pflegegrad - column: PflegesatzProMonat - column: GueltigBis The table should have the title "Pflegesatzvereinbarungs" und the data must be loaded from the server with the following relative URL: "/PflegegradService/pflegesatzvereinbarung/versorgungsvertrag/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum