Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ApothekeApp
Please create a React-JS application for the ApothekeModule. The application has to offer the following views for the user interface: 1. ApothekeView 2. ApothekerView 3. VersandapothekeDetailView 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 ApothekeView must contain the following fields: - name: ApothekenTyp type: STRING - name: Gruendungsdatum type: DATE - name: Hauptapotheke type: LONG - name: InhaberApotheker type: Apotheker - name: InternationaleBezeichnungFlag type: BOOL - name: Name type: STRING - name: Ort type: STRING - name: Plz type: STRING - name: Region type: Region - name: Strasse type: STRING - name: VersandErlaubnisFlag type: BOOL The data source for the [InhaberApotheker] select control should be loaded from the relative URL: "/ApothekeService/apotheker" (HTTP-GET) The data source for the [Region] select control should be loaded from the relative URL: "/LandService/region" (HTTP-GET) An existing Apotheke entity should be loaded from the relative URL: "/ApothekeService/apotheke/{id}" (HTTP-GET) If a new Apotheke entity has been created, the new entity should be posted to the relative URL: "/ApothekeService/apotheke" (HTTP-POST) If an existing Apotheke entity has been updated, the modified entity should be sent to the relative URL: "/ApothekeService/apotheke/{id}" (HTTP-PUT) If an existing Apotheke entity has to be deleted, the following relative URL should be called: "/ApothekeService/apotheke/{id}" (HTTP-DELETE) Add a HTML table to the view with the following FilialapothekeRelation columns: - column: VonDatum - column: BisDatum - column: Hauptapotheke - column: Filialapotheke The table should have the title "FilialapothekeRelations" und the data must be loaded from the server with the following relative URL: "/ApothekenpflichtKategorieService/filialapothekerelation/filialapotheke/{id}" Add a HTML table to the view with the following FilialapothekeRelation columns: - column: VonDatum - column: BisDatum - column: Hauptapotheke - column: Filialapotheke The table should have the title "FilialapothekeRelations" und the data must be loaded from the server with the following relative URL: "/ApothekenpflichtKategorieService/filialapothekerelation/hauptapotheke/{id}" Add a HTML table to the view with the following Apothekenpersonal columns: - column: PersonalTyp - column: Qualifikation - column: Vorname - column: Nachname - column: Apotheke The table should have the title "Apothekenpersonals" und the data must be loaded from the server with the following relative URL: "/ApothekenpersonalService/apothekenpersonal/apotheke/{id}" Add a HTML table to the view with the following InventarLiteratur columns: - column: Apotheke - column: LiteraturTyp - column: PflichtliteraturFlag - column: Titel The table should have the title "InventarLiteraturs" und the data must be loaded from the server with the following relative URL: "/MuseumService/inventarliteratur/apotheke/{id}" Add a HTML table to the view with the following ApothekenSymbolVerwendung columns: - column: BisDatum - column: Symbol - column: Apotheke - column: VonDatum The table should have the title "ApothekenSymbolVerwendungs" und the data must be loaded from the server with the following relative URL: "/SymbolService/apothekensymbolverwendung/apotheke/{id}" Add a HTML table to the view with the following Rezept columns: - column: Kunde - column: Arzt - column: Datum - column: RezeptTyp - column: Apotheke The table should have the title "Rezepts" und the data must be loaded from the server with the following relative URL: "/KundeService/rezept/apotheke/{id}" Add a HTML table to the view with the following Apothekenleiter columns: - column: Apotheker - column: BisDatum - column: Apotheke - column: VonDatum The table should have the title "Apothekenleiters" und the data must be loaded from the server with the following relative URL: "/ApothekenketteService/apothekenleiter/apotheke/{id}" 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/apotheke/{id}" Add a HTML table to the view with the following ApothekenketteMitglied columns: - column: VonDatum - column: BisDatum - column: Apothekenkette - column: Apotheke The table should have the title "ApothekenketteMitglieds" und the data must be loaded from the server with the following relative URL: "/ApothekenketteService/apothekenkettemitglied/apotheke/{id}" Add a HTML table to the view with the following VersandapothekeDetail columns: - column: Apotheke - column: VersandStartDatum - column: VersandEndDatum - column: VersandBeschraenkungText The table should have the title "VersandapothekeDetails" und the data must be loaded from the server with the following relative URL: "/ApothekeService/versandapothekedetail/apotheke/{id}" Add a HTML table to the view with the following InventarGeraet columns: - column: PflichtgeraetFlag - column: Bezeichnung - column: Apotheke The table should have the title "InventarGeraets" und the data must be loaded from the server with the following relative URL: "/KundeService/inventargeraet/apotheke/{id}" Add a HTML table to the view with the following ApothekenkooperationMitglied columns: - column: Apotheke - column: BisDatum - column: Apothekenkooperation - column: VonDatum The table should have the title "ApothekenkooperationMitglieds" und the data must be loaded from the server with the following relative URL: "/ApothekenkooperationService/apothekenkooperationmitglied/apotheke/{id}" 2. The ApothekerView must contain the following fields: - name: Approbationsdatum type: DATE - name: Berufsstatus type: STRING - name: Geburtsdatum type: DATE - name: Nachname type: STRING - name: Vorname type: STRING An existing Apotheker entity should be loaded from the relative URL: "/ApothekeService/apotheker/{id}" (HTTP-GET) If a new Apotheker entity has been created, the new entity should be posted to the relative URL: "/ApothekeService/apotheker" (HTTP-POST) If an existing Apotheker entity has been updated, the modified entity should be sent to the relative URL: "/ApothekeService/apotheker/{id}" (HTTP-PUT) If an existing Apotheker entity has to be deleted, the following relative URL should be called: "/ApothekeService/apotheker/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Apothekenleiter columns: - column: Apotheker - column: BisDatum - column: Apotheke - column: VonDatum The table should have the title "Apothekenleiters" und the data must be loaded from the server with the following relative URL: "/ApothekenketteService/apothekenleiter/apotheker/{id}" Add a HTML table to the view with the following Apotheke columns: - column: Ort - column: Region - column: Hauptapotheke - column: Strasse - column: Plz - column: VersandErlaubnisFlag - column: ApothekenTyp - column: Gruendungsdatum - column: InhaberApotheker - column: InternationaleBezeichnungFlag - column: Name The table should have the title "Apothekes" und the data must be loaded from the server with the following relative URL: "/ApothekeService/apotheke/inhaberapotheker/{id}" 3. The VersandapothekeDetailView must contain the following fields: - name: Apotheke type: Apotheke - name: VersandBeschraenkungText type: STRING - name: VersandEndDatum type: DATE - name: VersandStartDatum type: DATE The data source for the [Apotheke] select control should be loaded from the relative URL: "/ApothekeService/apotheke" (HTTP-GET) An existing VersandapothekeDetail entity should be loaded from the relative URL: "/ApothekeService/versandapothekedetail/{id}" (HTTP-GET) If a new VersandapothekeDetail entity has been created, the new entity should be posted to the relative URL: "/ApothekeService/versandapothekedetail" (HTTP-POST) If an existing VersandapothekeDetail entity has been updated, the modified entity should be sent to the relative URL: "/ApothekeService/versandapothekedetail/{id}" (HTTP-PUT) If an existing VersandapothekeDetail entity has to be deleted, the following relative URL should be called: "/ApothekeService/versandapothekedetail/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum