Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
EinsatzView
Please create a React-JS view called "EinsatzView" for the fields of the Einsatz entity. The EinsatzView must contain the following fields: - name: Abbruchgrund type: STRING - name: Einsatzstatus type: STRING - name: GeplantEnde type: DATE - name: GeplantStart type: DATE - name: Klient type: Klient - name: PflegedienstStandort type: Pflegedienst - name: TatsächlichEnde type: DATE - name: TatsächlichStart type: DATE - name: VerantwortlicherMitarbeiter type: INT The data source for the [Klient] select control should be loaded from the relative URL: "/PflegedienstService/klient" (HTTP-GET) The data source for the [PflegedienstStandort] select control should be loaded from the relative URL: "/PflegedienstService/pflegedienst" (HTTP-GET) An existing Einsatz entity should be loaded from the relative URL: "/EinsatzService/einsatz/{id}" (HTTP-GET) If a new Einsatz entity has been created, the new entity should be posted to the relative URL: "/EinsatzService/einsatz" (HTTP-POST) If an existing Einsatz entity has been updated, the modified entity should be sent to the relative URL: "/EinsatzService/einsatz/{id}" (HTTP-PUT) If an existing Einsatz entity has to be deleted, the following relative URL should be called: "/EinsatzService/einsatz/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PflegeDokumentation columns: - column: ErstelltVonMitarbeiter - column: Zeitpunkt - column: Dokumentationstyp - column: Textinhalt - column: Klient - column: Einsatz The table should have the title "PflegeDokumentations" und the data must be loaded from the server with the following relative URL: "/EinsatzService/pflegedokumentation/einsatz/{id}" Add a HTML table to the view with the following Rechnungsposition columns: - column: EinsatzLeistung - column: LeistungskatalogEintrag - column: Rechnung - column: Einzelpreis - column: Menge - column: Betrag - column: Beschreibung The table should have the title "Rechnungspositions" und the data must be loaded from the server with the following relative URL: "/VersicherungService/rechnungsposition/einsatzleistung/{id}" Add a HTML table to the view with the following EinsatzMitarbeiter columns: - column: TatsächlichStart - column: TatsächlichEnde - column: RolleWaeh - column: Mitarbeiter - column: Einsatz The table should have the title "EinsatzMitarbeiters" und the data must be loaded from the server with the following relative URL: "/RolleService/einsatzmitarbeiter/einsatz/{id}" Add a HTML table to the view with the following EinsatzLeistung columns: - column: TatsächlicheDauerMinuten - column: Notiz - column: Menge - column: IstTeilweise - column: Einsatz - column: LeistungskatalogEintrag - column: GeplanteDauerMinuten The table should have the title "EinsatzLeistungs" und the data must be loaded from the server with the following relative URL: "/EinsatzService/einsatzleistung/einsatz/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum