Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LandRegionApp
Please create a React-JS application for the LandRegionModule. The application has to offer the following views for the user interface: 1. GebuehrenordnungView 2. KostentraegerView 3. KostentraegertypView 4. LandRegionView 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 GebuehrenordnungView must contain the following fields: - name: IstOeffentlich type: BOOL - name: LandRegion type: LandRegion - name: Name type: STRING The data source for the [LandRegion] select control should be loaded from the relative URL: "/LandRegionService/landregion" (HTTP-GET) An existing Gebuehrenordnung entity should be loaded from the relative URL: "/LandRegionService/gebuehrenordnung/{id}" (HTTP-GET) If a new Gebuehrenordnung entity has been created, the new entity should be posted to the relative URL: "/LandRegionService/gebuehrenordnung" (HTTP-POST) If an existing Gebuehrenordnung entity has been updated, the modified entity should be sent to the relative URL: "/LandRegionService/gebuehrenordnung/{id}" (HTTP-PUT) If an existing Gebuehrenordnung entity has to be deleted, the following relative URL should be called: "/LandRegionService/gebuehrenordnung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Gebuehrenposition columns: - column: MinMultiplikator - column: Grundbetrag - column: MaxMultiplikator - column: Gebuehrenordnung - column: IstAnalogBewertung - column: Beschreibung - column: Code The table should have the title "Gebuehrenpositions" und the data must be loaded from the server with the following relative URL: "/GebuehrenpositionService/gebuehrenposition/gebuehrenordnung/{id}" 2. The KostentraegerView must contain the following fields: - name: Kostentraegertyp type: Kostentraegertyp - name: LandRegion type: LandRegion - name: Name type: STRING The data source for the [LandRegion] select control should be loaded from the relative URL: "/LandRegionService/landregion" (HTTP-GET) The data source for the [Kostentraegertyp] select control should be loaded from the relative URL: "/LandRegionService/kostentraegertyp" (HTTP-GET) An existing Kostentraeger entity should be loaded from the relative URL: "/LandRegionService/kostentraeger/{id}" (HTTP-GET) If a new Kostentraeger entity has been created, the new entity should be posted to the relative URL: "/LandRegionService/kostentraeger" (HTTP-POST) If an existing Kostentraeger entity has been updated, the modified entity should be sent to the relative URL: "/LandRegionService/kostentraeger/{id}" (HTTP-PUT) If an existing Kostentraeger entity has to be deleted, the following relative URL should be called: "/LandRegionService/kostentraeger/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Praxisvertrag columns: - column: Kostentraeger - column: Startdatum - column: IstAktiv - column: Enddatum - column: Vertragsmodell - column: Praxis - column: Vertragsnummer The table should have the title "Praxisvertrags" und the data must be loaded from the server with the following relative URL: "/VertragsmodellService/praxisvertrag/kostentraeger/{id}" Add a HTML table to the view with the following Abrechnungsfall columns: - column: Praxis - column: ZeitraumEnde - column: Vertragsmodell - column: Kostentraeger - column: Rechnungsnummer - column: Status - column: Abrechnungsdatum - column: Patient - column: ZeitraumStart The table should have the title "Abrechnungsfalls" und the data must be loaded from the server with the following relative URL: "/VertragsmodellService/abrechnungsfall/kostentraeger/{id}" 3. The KostentraegertypView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Kostentraegertyp entity should be loaded from the relative URL: "/LandRegionService/kostentraegertyp/{id}" (HTTP-GET) If a new Kostentraegertyp entity has been created, the new entity should be posted to the relative URL: "/LandRegionService/kostentraegertyp" (HTTP-POST) If an existing Kostentraegertyp entity has been updated, the modified entity should be sent to the relative URL: "/LandRegionService/kostentraegertyp/{id}" (HTTP-PUT) If an existing Kostentraegertyp entity has to be deleted, the following relative URL should be called: "/LandRegionService/kostentraegertyp/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Kostentraeger columns: - column: Name - column: LandRegion - column: Kostentraegertyp The table should have the title "Kostentraegers" und the data must be loaded from the server with the following relative URL: "/LandRegionService/kostentraeger/kostentraegertyp/{id}" 4. The LandRegionView must contain the following fields: - name: IstNeueBundeslaender type: BOOL - name: LandCode type: STRING - name: Regionsname type: STRING An existing LandRegion entity should be loaded from the relative URL: "/LandRegionService/landregion/{id}" (HTTP-GET) If a new LandRegion entity has been created, the new entity should be posted to the relative URL: "/LandRegionService/landregion" (HTTP-POST) If an existing LandRegion entity has been updated, the modified entity should be sent to the relative URL: "/LandRegionService/landregion/{id}" (HTTP-PUT) If an existing LandRegion entity has to be deleted, the following relative URL should be called: "/LandRegionService/landregion/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Kostentraeger columns: - column: Name - column: LandRegion - column: Kostentraegertyp The table should have the title "Kostentraegers" und the data must be loaded from the server with the following relative URL: "/LandRegionService/kostentraeger/landregion/{id}" Add a HTML table to the view with the following Gebuehrenordnung columns: - column: IstOeffentlich - column: LandRegion - column: Name The table should have the title "Gebuehrenordnungs" und the data must be loaded from the server with the following relative URL: "/LandRegionService/gebuehrenordnung/landregion/{id}" Add a HTML table to the view with the following Praxis columns: - column: Name - column: LandRegion - column: Rechtsform - column: Postleitzahl - column: Webseite - column: IstAmbulanteKlinik - column: Praxisart - column: Ort - column: Strasse - column: EmailAdresse - column: Enddatum - column: Telefonnummer - column: Kooperationsform - column: Startdatum - column: IstMobil The table should have the title "Praxiss" und the data must be loaded from the server with the following relative URL: "/PraxisService/praxis/landregion/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum