Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PersonApp
Please create a React-JS application for the PersonModule. The application has to offer the following views for the user interface: 1. ArztView 2. PersonView 3. TerminView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The ArztView must contain the following fields: - name: Approbationsnummer type: STRING - name: Fachgebiet type: STRING - name: IstKrankenhausbeschaeftigt type: BOOL - name: IstPrivatarzt type: BOOL - name: IstVertragsarzt type: BOOL - name: IstWahlarzt type: BOOL - name: Person type: Person The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Arzt entity should be loaded from the relative URL: "/PersonService/arzt/{id}" (HTTP-GET) If a new Arzt entity has been created, the new entity should be posted to the relative URL: "/PersonService/arzt" (HTTP-POST) If an existing Arzt entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/arzt/{id}" (HTTP-PUT) If an existing Arzt entity has to be deleted, the following relative URL should be called: "/PersonService/arzt/{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/durchgefuehrtvonarzt/{id}" 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/arzt/{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/arzt/{id}" 2. The PersonView must contain the following fields: - name: EmailAdresse type: STRING - name: Geburtsdatum type: DATE - name: Geschlecht type: STRING - name: Nachname type: STRING - name: Ort type: STRING - name: Postleitzahl type: STRING - name: Strasse type: STRING - name: Telefonnummer type: STRING - name: Vorname type: STRING An existing Person entity should be loaded from the relative URL: "/PersonService/person/{id}" (HTTP-GET) If a new Person entity has been created, the new entity should be posted to the relative URL: "/PersonService/person" (HTTP-POST) If an existing Person entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/person/{id}" (HTTP-PUT) If an existing Person entity has to be deleted, the following relative URL should be called: "/PersonService/person/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Arbeitsvertrag columns: - column: Praxis - column: Startdatum - column: Personalrolle - column: Enddatum - column: Beschaeftigungsart - column: Wochenstunden - column: Person The table should have the title "Arbeitsvertrags" und the data must be loaded from the server with the following relative URL: "/PraxisService/arbeitsvertrag/person/{id}" Add a HTML table to the view with the following Arzt columns: - column: Person - column: Approbationsnummer - column: IstKrankenhausbeschaeftigt - column: IstVertragsarzt - column: IstPrivatarzt - column: Fachgebiet - column: IstWahlarzt The table should have the title "Arzts" und the data must be loaded from the server with the following relative URL: "/PersonService/arzt/person/{id}" Add a HTML table to the view with the following Patient columns: - column: Person - column: Versicherungsnummer - column: IstSelbstzahler - column: IstObdachlos The table should have the title "Patients" und the data must be loaded from the server with the following relative URL: "/PatientService/patient/person/{id}" Add a HTML table to the view with the following NichtmedizinischesPersonal columns: - column: Person - column: Berufsbezeichnung The table should have the title "NichtmedizinischesPersonals" und the data must be loaded from the server with the following relative URL: "/PatientService/nichtmedizinischespersonal/person/{id}" 3. The TerminView must contain the following fields: - name: Arzt type: Arzt - name: DauerMinuten type: INT - name: IstTelemedizin type: BOOL - name: Patient type: Patient - name: Praxis type: Praxis - name: Status type: STRING - name: Terminzeit type: DATE 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 [Praxis] select control should be loaded from the relative URL: "/PraxisService/praxis" (HTTP-GET) An existing Termin entity should be loaded from the relative URL: "/PersonService/termin/{id}" (HTTP-GET) If a new Termin entity has been created, the new entity should be posted to the relative URL: "/PersonService/termin" (HTTP-POST) If an existing Termin entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/termin/{id}" (HTTP-PUT) If an existing Termin entity has to be deleted, the following relative URL should be called: "/PersonService/termin/{id}" (HTTP-DELETE) 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/termin/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum