Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PflegevertragView
Please create a React-JS view called "PflegevertragView" for the fields of the Pflegevertrag entity. The PflegevertragView must contain the following fields: - name: Bemerkung type: STRING - name: Enddatum type: DATE - name: Klient type: Klient - name: Kuendigungsdatum type: DATE - name: Kuendigungsgrund type: STRING - name: Pflegedienst type: Pflegedienst - name: Startdatum type: DATE - name: Status type: STRING - name: Vertragstyp type: STRING The data source for the [Pflegedienst] select control should be loaded from the relative URL: "/PflegedienstService/pflegedienst" (HTTP-GET) The data source for the [Klient] select control should be loaded from the relative URL: "/PflegedienstService/klient" (HTTP-GET) An existing Pflegevertrag entity should be loaded from the relative URL: "/PflegedienstService/pflegevertrag/{id}" (HTTP-GET) If a new Pflegevertrag entity has been created, the new entity should be posted to the relative URL: "/PflegedienstService/pflegevertrag" (HTTP-POST) If an existing Pflegevertrag entity has been updated, the modified entity should be sent to the relative URL: "/PflegedienstService/pflegevertrag/{id}" (HTTP-PUT) If an existing Pflegevertrag entity has to be deleted, the following relative URL should be called: "/PflegedienstService/pflegevertrag/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PflegevertragEintrag columns: - column: IstOptional - column: Frequenzmuster - column: GeplanteDauerMinuten - column: LeistungskatalogEintrag - column: Pflegevertrag The table should have the title "PflegevertragEintrags" und the data must be loaded from the server with the following relative URL: "/LeistungskatalogEintragService/pflegevertrageintrag/pflegevertrag/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum