Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PraxisStandortApp
Please create a React-JS application for the PraxisStandortModule. The application has to offer the following views for the user interface: 1. BenutzerKontoView 2. PraxisStandortView 3. RaumView 4. 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 4 views are defined below. 1. The BenutzerKontoView must contain the following fields: - name: Benutzername type: STRING - name: EMail type: STRING - name: ErstelltAm type: DATE - name: IstAktiv type: BOOL - name: LetzteAnmeldung type: DATE - name: PasswortHash type: STRING - name: Patient type: Patient The data source for the [Patient] select control should be loaded from the relative URL: "/PatientService/patient" (HTTP-GET) An existing BenutzerKonto entity should be loaded from the relative URL: "/PraxisStandortService/benutzerkonto/{id}" (HTTP-GET) If a new BenutzerKonto entity has been created, the new entity should be posted to the relative URL: "/PraxisStandortService/benutzerkonto" (HTTP-POST) If an existing BenutzerKonto entity has been updated, the modified entity should be sent to the relative URL: "/PraxisStandortService/benutzerkonto/{id}" (HTTP-PUT) If an existing BenutzerKonto entity has to be deleted, the following relative URL should be called: "/PraxisStandortService/benutzerkonto/{id}" (HTTP-DELETE) 2. The PraxisStandortView must contain the following fields: - name: Beschreibung type: STRING - name: EMail type: STRING - name: Hausnummer type: STRING - name: IstHauptstandort type: BOOL - name: Land type: STRING - name: Name type: STRING - name: Oeffnungszeiten type: STRING - name: Ort type: STRING - name: Postleitzahl type: STRING - name: Strasse type: STRING - name: Telefonnummer type: STRING An existing PraxisStandort entity should be loaded from the relative URL: "/PraxisStandortService/praxisstandort/{id}" (HTTP-GET) If a new PraxisStandort entity has been created, the new entity should be posted to the relative URL: "/PraxisStandortService/praxisstandort" (HTTP-POST) If an existing PraxisStandort entity has been updated, the modified entity should be sent to the relative URL: "/PraxisStandortService/praxisstandort/{id}" (HTTP-PUT) If an existing PraxisStandort entity has to be deleted, the following relative URL should be called: "/PraxisStandortService/praxisstandort/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Termin columns: - column: ErstelltAm - column: Notizen - column: PraxisStandort - column: StornoGrund - column: Status - column: StartZeit - column: Mitarbeiter - column: StorniertAm - column: Patient - column: EndZeit - column: Raum The table should have the title "Termins" und the data must be loaded from the server with the following relative URL: "/PraxisStandortService/termin/praxisstandort/{id}" Add a HTML table to the view with the following Mitarbeiter columns: - column: Nachname - column: Austrittsdatum - column: MitarbeiterNummer - column: IstAktiv - column: Telefonnummer - column: Eintrittsdatum - column: EMail - column: PraxisStandort - column: Vorname - column: Rolle - column: Mobilnummer The table should have the title "Mitarbeiters" und the data must be loaded from the server with the following relative URL: "/MitarbeiterService/mitarbeiter/praxisstandort/{id}" Add a HTML table to the view with the following Raum columns: - column: Beschreibung - column: Name - column: IstBehandlungsraum - column: Etage - column: PraxisStandort - column: Raumnummer The table should have the title "Raums" und the data must be loaded from the server with the following relative URL: "/PraxisStandortService/raum/praxisstandort/{id}" 3. The RaumView must contain the following fields: - name: Beschreibung type: STRING - name: Etage type: STRING - name: IstBehandlungsraum type: BOOL - name: Name type: STRING - name: PraxisStandort type: PraxisStandort - name: Raumnummer type: STRING The data source for the [PraxisStandort] select control should be loaded from the relative URL: "/PraxisStandortService/praxisstandort" (HTTP-GET) An existing Raum entity should be loaded from the relative URL: "/PraxisStandortService/raum/{id}" (HTTP-GET) If a new Raum entity has been created, the new entity should be posted to the relative URL: "/PraxisStandortService/raum" (HTTP-POST) If an existing Raum entity has been updated, the modified entity should be sent to the relative URL: "/PraxisStandortService/raum/{id}" (HTTP-PUT) If an existing Raum entity has to be deleted, the following relative URL should be called: "/PraxisStandortService/raum/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Termin columns: - column: ErstelltAm - column: Notizen - column: PraxisStandort - column: StornoGrund - column: Status - column: StartZeit - column: Mitarbeiter - column: StorniertAm - column: Patient - column: EndZeit - column: Raum The table should have the title "Termins" und the data must be loaded from the server with the following relative URL: "/PraxisStandortService/termin/raum/{id}" Add a HTML table to the view with the following AusstattungZuordnung columns: - column: BisDatum - column: Raum - column: VonDatum - column: Ausstattung The table should have the title "AusstattungZuordnungs" und the data must be loaded from the server with the following relative URL: "/AusstattungService/ausstattungzuordnung/raum/{id}" 4. The TerminView must contain the following fields: - name: EndZeit type: DATE - name: ErstelltAm type: DATE - name: Mitarbeiter type: Mitarbeiter - name: Notizen type: STRING - name: Patient type: Patient - name: PraxisStandort type: PraxisStandort - name: Raum type: Raum - name: StartZeit type: DATE - name: Status type: STRING - name: StorniertAm type: DATE - name: StornoGrund type: STRING The data source for the [Raum] select control should be loaded from the relative URL: "/PraxisStandortService/raum" (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 [Mitarbeiter] select control should be loaded from the relative URL: "/MitarbeiterService/mitarbeiter" (HTTP-GET) The data source for the [PraxisStandort] select control should be loaded from the relative URL: "/PraxisStandortService/praxisstandort" (HTTP-GET) An existing Termin entity should be loaded from the relative URL: "/PraxisStandortService/termin/{id}" (HTTP-GET) If a new Termin entity has been created, the new entity should be posted to the relative URL: "/PraxisStandortService/termin" (HTTP-POST) If an existing Termin entity has been updated, the modified entity should be sent to the relative URL: "/PraxisStandortService/termin/{id}" (HTTP-PUT) If an existing Termin entity has to be deleted, the following relative URL should be called: "/PraxisStandortService/termin/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BehandlungsSitzung columns: - column: Leistung - column: Notizen - column: DauerMinuten - column: Mitarbeiter - column: DurchgefuehrtAm - column: Termin - column: Patient - column: FolgeTerminNoetig The table should have the title "BehandlungsSitzungs" und the data must be loaded from the server with the following relative URL: "/LeistungService/behandlungssitzung/termin/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum