Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BehandlungView
Please create a React-JS view called "BehandlungView" for the fields of the Behandlung entity. The BehandlungView must contain the following fields: - name: Arzt type: Arzt - name: Behandlungsart type: STRING - name: Behandlungszeit type: DATE - name: Notizen type: STRING - name: Patient type: Patient - name: Praxis type: Praxis - name: Termin type: Termin The data source for the [Arzt] select control should be loaded from the relative URL: "/PersonService/arzt" (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 [Termin] select control should be loaded from the relative URL: "/PersonService/termin" (HTTP-GET) The data source for the [Praxis] select control should be loaded from the relative URL: "/PraxisService/praxis" (HTTP-GET) An existing Behandlung entity should be loaded from the relative URL: "/PatientService/behandlung/{id}" (HTTP-GET) If a new Behandlung entity has been created, the new entity should be posted to the relative URL: "/PatientService/behandlung" (HTTP-POST) If an existing Behandlung entity has been updated, the modified entity should be sent to the relative URL: "/PatientService/behandlung/{id}" (HTTP-PUT) If an existing Behandlung entity has to be deleted, the following relative URL should be called: "/PatientService/behandlung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Behandlungsleistung columns: - column: DurchgefuehrtVonArzt - column: Behandlung - column: Gebuehrenposition - column: DurchgefuehrtVonPersonal - column: Menge - column: Multiplikator The table should have the title "Behandlungsleistungs" und the data must be loaded from the server with the following relative URL: "/PatientService/behandlungsleistung/behandlung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum