Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
KurView
Please create a React-JS view called "KurView" for the fields of the Kur entity. The KurView must contain the following fields: - name: Anwendungsart type: Anwendungsart - name: Arzt type: Arzt - name: Beschreibung type: STRING - name: DauerTage type: INT - name: Enddatum type: DATE - name: Genehmigt type: BOOL - name: KostentraegerTyp type: KostentraegerTyp - name: Krankenkasse type: Krankenkasse - name: Kureinrichtung type: Kureinrichtung - name: Kurtyp type: Kurtyp - name: Name type: STRING - name: Patient type: Patient - name: Rechtsgrundlage type: Rechtsgrundlage - name: RehaMassnahme type: RehaMassnahme - name: Startdatum type: DATE - name: Ziel type: STRING The data source for the [Anwendungsart] select control should be loaded from the relative URL: "/KurService/anwendungsart" (HTTP-GET) The data source for the [Kurtyp] select control should be loaded from the relative URL: "/KurtypService/kurtyp" (HTTP-GET) The data source for the [Rechtsgrundlage] select control should be loaded from the relative URL: "/KurService/rechtsgrundlage" (HTTP-GET) The data source for the [Arzt] select control should be loaded from the relative URL: "/KurtypService/arzt" (HTTP-GET) The data source for the [Kureinrichtung] select control should be loaded from the relative URL: "/KureinrichtungService/kureinrichtung" (HTTP-GET) The data source for the [Krankenkasse] select control should be loaded from the relative URL: "/KrankenkasseService/krankenkasse" (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 [RehaMassnahme] select control should be loaded from the relative URL: "/PatientService/rehamassnahme" (HTTP-GET) The data source for the [KostentraegerTyp] select control should be loaded from the relative URL: "/KurService/kostentraegertyp" (HTTP-GET) An existing Kur entity should be loaded from the relative URL: "/KurService/kur/{id}" (HTTP-GET) If a new Kur entity has been created, the new entity should be posted to the relative URL: "/KurService/kur" (HTTP-POST) If an existing Kur entity has been updated, the modified entity should be sent to the relative URL: "/KurService/kur/{id}" (HTTP-PUT) If an existing Kur entity has to be deleted, the following relative URL should be called: "/KurService/kur/{id}" (HTTP-DELETE) Add a HTML table to the view with the following KurKontraindikation columns: - column: Notizen - column: Kontraindikation - column: Kur The table should have the title "KurKontraindikations" und the data must be loaded from the server with the following relative URL: "/KontraindikationService/kurkontraindikation/kur/{id}" Add a HTML table to the view with the following KurHeilmittel columns: - column: Anwendungsbeschreibung - column: Kur - column: Heilmittel The table should have the title "KurHeilmittels" und the data must be loaded from the server with the following relative URL: "/KrankenkasseService/kurheilmittel/kur/{id}" Add a HTML table to the view with the following Therapiesitzung columns: - column: Kur - column: Therapieart - column: Notizen - column: DauerMinuten - column: Zeitpunkt - column: Intensitaet The table should have the title "Therapiesitzungs" und the data must be loaded from the server with the following relative URL: "/KurtypService/therapiesitzung/kur/{id}" Add a HTML table to the view with the following KurIndikation columns: - column: Indikation - column: Kur - column: Prioritaet The table should have the title "KurIndikations" und the data must be loaded from the server with the following relative URL: "/PatientService/kurindikation/kur/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum