Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
HeimvertragView
Please create a React-JS view called "HeimvertragView" for the fields of the Heimvertrag entity. The HeimvertragView must contain the following fields: - name: Aktuell type: BOOL - name: AusbildungsumlageMonat type: DOUBLE - name: Bemessungsdatum type: DATE - name: Bewohner type: Bewohner - name: EinheitlicherEigenanteilMonat type: DOUBLE - name: GesamtheimentgeltMonat type: DOUBLE - name: InvestitionskostenMonat type: DOUBLE - name: Pflegeart type: Pflegeart - name: Pflegeplatz type: Pflegeplatz - name: PflegesatzMonat type: DOUBLE - name: UnterkunftVerpflegungMonat type: DOUBLE - name: Vertragsbeginn type: DATE - name: Vertragsende type: DATE The data source for the [Pflegeplatz] select control should be loaded from the relative URL: "/PflegeheimketteService/pflegeplatz" (HTTP-GET) The data source for the [Pflegeart] select control should be loaded from the relative URL: "/PflegeartService/pflegeart" (HTTP-GET) The data source for the [Bewohner] select control should be loaded from the relative URL: "/BewohnerService/bewohner" (HTTP-GET) An existing Heimvertrag entity should be loaded from the relative URL: "/PflegeartService/heimvertrag/{id}" (HTTP-GET) If a new Heimvertrag entity has been created, the new entity should be posted to the relative URL: "/PflegeartService/heimvertrag" (HTTP-POST) If an existing Heimvertrag entity has been updated, the modified entity should be sent to the relative URL: "/PflegeartService/heimvertrag/{id}" (HTTP-PUT) If an existing Heimvertrag entity has to be deleted, the following relative URL should be called: "/PflegeartService/heimvertrag/{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/heimvertrag/{id}" Add a HTML table to the view with the following Zahlung columns: - column: Zahlungsart - column: Heimvertrag - column: Betrag - column: Zahlungsdatum - column: Bewohner - column: LeistenderTyp - column: Bemerkung The table should have the title "Zahlungs" und the data must be loaded from the server with the following relative URL: "/BewohnerService/zahlung/heimvertrag/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum