Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
TerminView
Please create a React-JS view called "TerminView" for the fields of the Termin entity. The TerminView must contain the following fields: - name: EndZeit type: DATE - name: ErstelltAm type: DATE - name: Mitarbeiter type: Mitarbeiter - name: Notizen type: STRING - name: Patient type: Patient - name: PraxisStandort type: PraxisStandort - name: Raum type: Raum - name: StartZeit type: DATE - name: Status type: STRING - name: StorniertAm type: DATE - name: StornoGrund type: STRING The data source for the [Raum] select control should be loaded from the relative URL: "/PraxisStandortService/raum" (HTTP-GET) The data source for the [Patient] select control should be loaded from the relative URL: "/PatientService/patient" (HTTP-GET) The data source for the [Mitarbeiter] select control should be loaded from the relative URL: "/MitarbeiterService/mitarbeiter" (HTTP-GET) The data source for the [PraxisStandort] select control should be loaded from the relative URL: "/PraxisStandortService/praxisstandort" (HTTP-GET) An existing Termin entity should be loaded from the relative URL: "/PraxisStandortService/termin/{id}" (HTTP-GET) If a new Termin entity has been created, the new entity should be posted to the relative URL: "/PraxisStandortService/termin" (HTTP-POST) If an existing Termin entity has been updated, the modified entity should be sent to the relative URL: "/PraxisStandortService/termin/{id}" (HTTP-PUT) If an existing Termin entity has to be deleted, the following relative URL should be called: "/PraxisStandortService/termin/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BehandlungsSitzung columns: - column: Leistung - column: Notizen - column: DauerMinuten - column: Mitarbeiter - column: DurchgefuehrtAm - column: Termin - column: Patient - column: FolgeTerminNoetig The table should have the title "BehandlungsSitzungs" und the data must be loaded from the server with the following relative URL: "/LeistungService/behandlungssitzung/termin/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum