Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ApothekenpersonalApp
Please create a React-JS application for the ApothekenpersonalModule. The application has to offer the following views for the user interface: 1. ApothekenpersonalView 2. BeratungsvorgangView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The ApothekenpersonalView must contain the following fields: - name: Apotheke type: Apotheke - name: Nachname type: STRING - name: PersonalTyp type: STRING - name: Qualifikation type: STRING - name: Vorname type: STRING The data source for the [Apotheke] select control should be loaded from the relative URL: "/ApothekeService/apotheke" (HTTP-GET) An existing Apothekenpersonal entity should be loaded from the relative URL: "/ApothekenpersonalService/apothekenpersonal/{id}" (HTTP-GET) If a new Apothekenpersonal entity has been created, the new entity should be posted to the relative URL: "/ApothekenpersonalService/apothekenpersonal" (HTTP-POST) If an existing Apothekenpersonal entity has been updated, the modified entity should be sent to the relative URL: "/ApothekenpersonalService/apothekenpersonal/{id}" (HTTP-PUT) If an existing Apothekenpersonal entity has to be deleted, the following relative URL should be called: "/ApothekenpersonalService/apothekenpersonal/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Beratungsvorgang columns: - column: Kunde - column: Beratungsart - column: Apotheke - column: DurchPersonal - column: ThemaText - column: Kanal - column: KundeTyp - column: Datum The table should have the title "Beratungsvorgangs" und the data must be loaded from the server with the following relative URL: "/ApothekenpersonalService/beratungsvorgang/durchpersonal/{id}" 2. The BeratungsvorgangView must contain the following fields: - name: Apotheke type: Apotheke - name: Beratungsart type: STRING - name: Datum type: DATE - name: DurchPersonal type: Apothekenpersonal - name: Kanal type: STRING - name: Kunde type: Kunde - name: KundeTyp type: STRING - name: ThemaText type: STRING The data source for the [Kunde] select control should be loaded from the relative URL: "/KundeService/kunde" (HTTP-GET) The data source for the [Apotheke] select control should be loaded from the relative URL: "/ApothekeService/apotheke" (HTTP-GET) The data source for the [DurchPersonal] select control should be loaded from the relative URL: "/ApothekenpersonalService/apothekenpersonal" (HTTP-GET) An existing Beratungsvorgang entity should be loaded from the relative URL: "/ApothekenpersonalService/beratungsvorgang/{id}" (HTTP-GET) If a new Beratungsvorgang entity has been created, the new entity should be posted to the relative URL: "/ApothekenpersonalService/beratungsvorgang" (HTTP-POST) If an existing Beratungsvorgang entity has been updated, the modified entity should be sent to the relative URL: "/ApothekenpersonalService/beratungsvorgang/{id}" (HTTP-PUT) If an existing Beratungsvorgang entity has to be deleted, the following relative URL should be called: "/ApothekenpersonalService/beratungsvorgang/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum