Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
FallView
Please create a React-JS view called "FallView" for the fields of the Fall entity. The FallView must contain the following fields: - name: Abteilung type: Abteilung - name: Aufnahme type: Aufnahme - name: Drg type: Drg - name: FallBeginn type: STRING - name: FallEnde type: STRING - name: FallNummer type: STRING The data source for the [Abteilung] select control should be loaded from the relative URL: "/AbteilungService/abteilung" (HTTP-GET) The data source for the [Aufnahme] select control should be loaded from the relative URL: "/FallService/aufnahme" (HTTP-GET) The data source for the [Drg] select control should be loaded from the relative URL: "/AbteilungService/drg" (HTTP-GET) An existing Fall entity should be loaded from the relative URL: "/FallService/fall/{id}" (HTTP-GET) If a new Fall entity has been created, the new entity should be posted to the relative URL: "/FallService/fall" (HTTP-POST) If an existing Fall entity has been updated, the modified entity should be sent to the relative URL: "/FallService/fall/{id}" (HTTP-PUT) If an existing Fall entity has to be deleted, the following relative URL should be called: "/FallService/fall/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Prozedur columns: - column: ProzedurDatum - column: Fall - column: Ops - column: IstHauptprozedur - column: Beschreibung The table should have the title "Prozedurs" und the data must be loaded from the server with the following relative URL: "/FallService/prozedur/fall/{id}" Add a HTML table to the view with the following FallAbrechnung columns: - column: RechnungsDatum - column: Kostentraeger - column: RechnungsNummer - column: BetragKostentraeger - column: Fall - column: BetragGesamt - column: BetragPatient The table should have the title "FallAbrechnungs" und the data must be loaded from the server with the following relative URL: "/KrankenhausArtService/fallabrechnung/fall/{id}" Add a HTML table to the view with the following Bewegung columns: - column: VonDatum - column: Station - column: BisDatum - column: Bett - column: Fall The table should have the title "Bewegungs" und the data must be loaded from the server with the following relative URL: "/StationService/bewegung/fall/{id}" Add a HTML table to the view with the following Diagnose columns: - column: IstHauptdiagnose - column: Fall - column: Beschreibung - column: Icd The table should have the title "Diagnoses" und the data must be loaded from the server with the following relative URL: "/IcdService/diagnose/fall/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum