Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PatientView
Please create a React-JS view called "PatientView" for the fields of the Patient entity. The PatientView must contain the following fields: - name: IstObdachlos type: BOOL - name: IstSelbstzahler type: BOOL - name: Person type: Person - name: Versicherungsnummer type: STRING The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Patient entity should be loaded from the relative URL: "/PatientService/patient/{id}" (HTTP-GET) If a new Patient entity has been created, the new entity should be posted to the relative URL: "/PatientService/patient" (HTTP-POST) If an existing Patient entity has been updated, the modified entity should be sent to the relative URL: "/PatientService/patient/{id}" (HTTP-PUT) If an existing Patient entity has to be deleted, the following relative URL should be called: "/PatientService/patient/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Termin columns: - column: Arzt - column: Praxis - column: DauerMinuten - column: IstTelemedizin - column: Terminzeit - column: Status - column: Patient The table should have the title "Termins" und the data must be loaded from the server with the following relative URL: "/PersonService/termin/patient/{id}" Add a HTML table to the view with the following Behandlung columns: - column: Notizen - column: Praxis - column: Arzt - column: Termin - column: Patient - column: Behandlungsart - column: Behandlungszeit The table should have the title "Behandlungs" und the data must be loaded from the server with the following relative URL: "/PatientService/behandlung/patient/{id}" Add a HTML table to the view with the following Abrechnungsfall columns: - column: Praxis - column: ZeitraumEnde - column: Vertragsmodell - column: Kostentraeger - column: Rechnungsnummer - column: Status - column: Abrechnungsdatum - column: Patient - column: ZeitraumStart The table should have the title "Abrechnungsfalls" und the data must be loaded from the server with the following relative URL: "/VertragsmodellService/abrechnungsfall/patient/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum