Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
KrankenkasseApp
Please create a React-JS application for the KrankenkasseModule. The application has to offer the following views for the user interface: 1. KostenuebernahmeentscheidungView 2. KrankenkasseView 3. KurantragView 4. KurHeilmittelView 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 KostenuebernahmeentscheidungView must contain the following fields: - name: Entscheidungsdatum type: DATE - name: GueltigBis type: DATE - name: GueltigVon type: DATE - name: Kurantrag type: Kurantrag - name: Notizen type: STRING - name: Status type: STRING - name: Zuzahlung type: STRING The data source for the [Kurantrag] select control should be loaded from the relative URL: "/KrankenkasseService/kurantrag" (HTTP-GET) An existing Kostenuebernahmeentscheidung entity should be loaded from the relative URL: "/KrankenkasseService/kostenuebernahmeentscheidung/{id}" (HTTP-GET) If a new Kostenuebernahmeentscheidung entity has been created, the new entity should be posted to the relative URL: "/KrankenkasseService/kostenuebernahmeentscheidung" (HTTP-POST) If an existing Kostenuebernahmeentscheidung entity has been updated, the modified entity should be sent to the relative URL: "/KrankenkasseService/kostenuebernahmeentscheidung/{id}" (HTTP-PUT) If an existing Kostenuebernahmeentscheidung entity has to be deleted, the following relative URL should be called: "/KrankenkasseService/kostenuebernahmeentscheidung/{id}" (HTTP-DELETE) 2. The KrankenkasseView must contain the following fields: - name: Kassenpraefix type: STRING - name: Kurzname type: STRING - name: Name type: STRING An existing Krankenkasse entity should be loaded from the relative URL: "/KrankenkasseService/krankenkasse/{id}" (HTTP-GET) If a new Krankenkasse entity has been created, the new entity should be posted to the relative URL: "/KrankenkasseService/krankenkasse" (HTTP-POST) If an existing Krankenkasse entity has been updated, the modified entity should be sent to the relative URL: "/KrankenkasseService/krankenkasse/{id}" (HTTP-PUT) If an existing Krankenkasse entity has to be deleted, the following relative URL should be called: "/KrankenkasseService/krankenkasse/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Kurantrag columns: - column: Notizen - column: GewuenschterKurtyp - column: Rechtsgrundlage - column: Antragsdatum - column: Arzt - column: KostentraegerTyp - column: Patient - column: Krankenkasse The table should have the title "Kurantrags" und the data must be loaded from the server with the following relative URL: "/KrankenkasseService/kurantrag/krankenkasse/{id}" Add a HTML table to the view with the following Kur columns: - column: Startdatum - column: DauerTage - column: Genehmigt - column: Arzt - column: Rechtsgrundlage - column: Name - column: RehaMassnahme - column: Ziel - column: Krankenkasse - column: KostentraegerTyp - column: Kurtyp - column: Patient - column: Anwendungsart - column: Kureinrichtung - column: Beschreibung - column: Enddatum The table should have the title "Kurs" und the data must be loaded from the server with the following relative URL: "/KurService/kur/krankenkasse/{id}" 3. The KurantragView must contain the following fields: - name: Antragsdatum type: DATE - name: Arzt type: Arzt - name: GewuenschterKurtyp type: Kurtyp - name: KostentraegerTyp type: KostentraegerTyp - name: Krankenkasse type: Krankenkasse - name: Notizen type: STRING - name: Patient type: Patient - name: Rechtsgrundlage type: Rechtsgrundlage The data source for the [Rechtsgrundlage] select control should be loaded from the relative URL: "/KurService/rechtsgrundlage" (HTTP-GET) The data source for the [GewuenschterKurtyp] select control should be loaded from the relative URL: "/KurtypService/kurtyp" (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 [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 [KostentraegerTyp] select control should be loaded from the relative URL: "/KurService/kostentraegertyp" (HTTP-GET) An existing Kurantrag entity should be loaded from the relative URL: "/KrankenkasseService/kurantrag/{id}" (HTTP-GET) If a new Kurantrag entity has been created, the new entity should be posted to the relative URL: "/KrankenkasseService/kurantrag" (HTTP-POST) If an existing Kurantrag entity has been updated, the modified entity should be sent to the relative URL: "/KrankenkasseService/kurantrag/{id}" (HTTP-PUT) If an existing Kurantrag entity has to be deleted, the following relative URL should be called: "/KrankenkasseService/kurantrag/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Kostenuebernahmeentscheidung columns: - column: Entscheidungsdatum - column: GueltigBis - column: Zuzahlung - column: Notizen - column: Kurantrag - column: Status - column: GueltigVon The table should have the title "Kostenuebernahmeentscheidungs" und the data must be loaded from the server with the following relative URL: "/KrankenkasseService/kostenuebernahmeentscheidung/kurantrag/{id}" 4. The KurHeilmittelView must contain the following fields: - name: Anwendungsbeschreibung type: STRING - name: Heilmittel type: Heilmittel - name: Kur type: Kur The data source for the [Heilmittel] select control should be loaded from the relative URL: "/HeilmittelService/heilmittel" (HTTP-GET) The data source for the [Kur] select control should be loaded from the relative URL: "/KurService/kur" (HTTP-GET) An existing KurHeilmittel entity should be loaded from the relative URL: "/KrankenkasseService/kurheilmittel/{id}" (HTTP-GET) If a new KurHeilmittel entity has been created, the new entity should be posted to the relative URL: "/KrankenkasseService/kurheilmittel" (HTTP-POST) If an existing KurHeilmittel entity has been updated, the modified entity should be sent to the relative URL: "/KrankenkasseService/kurheilmittel/{id}" (HTTP-PUT) If an existing KurHeilmittel entity has to be deleted, the following relative URL should be called: "/KrankenkasseService/kurheilmittel/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum