Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BehandlungsSitzungView
Please create a React-JS view called "BehandlungsSitzungView" for the fields of the BehandlungsSitzung entity. The BehandlungsSitzungView must contain the following fields: - name: DauerMinuten type: LONG - name: DurchgefuehrtAm type: DATE - name: FolgeTerminNoetig type: BOOL - name: Leistung type: Leistung - name: Mitarbeiter type: Mitarbeiter - name: Notizen type: STRING - name: Patient type: Patient - name: Termin type: Termin 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: "/PraxisStandortService/termin" (HTTP-GET) The data source for the [Leistung] select control should be loaded from the relative URL: "/LeistungService/leistung" (HTTP-GET) The data source for the [Mitarbeiter] select control should be loaded from the relative URL: "/MitarbeiterService/mitarbeiter" (HTTP-GET) An existing BehandlungsSitzung entity should be loaded from the relative URL: "/LeistungService/behandlungssitzung/{id}" (HTTP-GET) If a new BehandlungsSitzung entity has been created, the new entity should be posted to the relative URL: "/LeistungService/behandlungssitzung" (HTTP-POST) If an existing BehandlungsSitzung entity has been updated, the modified entity should be sent to the relative URL: "/LeistungService/behandlungssitzung/{id}" (HTTP-PUT) If an existing BehandlungsSitzung entity has to be deleted, the following relative URL should be called: "/LeistungService/behandlungssitzung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BehandlungsSitzungDiagnose columns: - column: Notizen - column: BehandlungsSitzung - column: Diagnose The table should have the title "BehandlungsSitzungDiagnoses" und the data must be loaded from the server with the following relative URL: "/LeistungService/behandlungssitzungdiagnose/behandlungssitzung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum