Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
GebuehrenpositionApp
Please create a React-JS application for the GebuehrenpositionModule. The application has to offer the following views for the user interface: 1. AbrechnungspostenView 2. GebuehrenpositionView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The AbrechnungspostenView must contain the following fields: - name: Abrechnungsfall type: Abrechnungsfall - name: Behandlungsleistung type: Behandlungsleistung - name: Einzelpreis type: STRING - name: Gebuehrenposition type: Gebuehrenposition - name: Gesamtbetrag type: STRING - name: Menge type: INT - name: Multiplikator type: STRING The data source for the [Behandlungsleistung] select control should be loaded from the relative URL: "/PatientService/behandlungsleistung" (HTTP-GET) The data source for the [Abrechnungsfall] select control should be loaded from the relative URL: "/VertragsmodellService/abrechnungsfall" (HTTP-GET) The data source for the [Gebuehrenposition] select control should be loaded from the relative URL: "/GebuehrenpositionService/gebuehrenposition" (HTTP-GET) An existing Abrechnungsposten entity should be loaded from the relative URL: "/GebuehrenpositionService/abrechnungsposten/{id}" (HTTP-GET) If a new Abrechnungsposten entity has been created, the new entity should be posted to the relative URL: "/GebuehrenpositionService/abrechnungsposten" (HTTP-POST) If an existing Abrechnungsposten entity has been updated, the modified entity should be sent to the relative URL: "/GebuehrenpositionService/abrechnungsposten/{id}" (HTTP-PUT) If an existing Abrechnungsposten entity has to be deleted, the following relative URL should be called: "/GebuehrenpositionService/abrechnungsposten/{id}" (HTTP-DELETE) 2. The GebuehrenpositionView must contain the following fields: - name: Beschreibung type: STRING - name: Code type: STRING - name: Gebuehrenordnung type: Gebuehrenordnung - name: Grundbetrag type: STRING - name: IstAnalogBewertung type: BOOL - name: MaxMultiplikator type: STRING - name: MinMultiplikator type: STRING The data source for the [Gebuehrenordnung] select control should be loaded from the relative URL: "/LandRegionService/gebuehrenordnung" (HTTP-GET) An existing Gebuehrenposition entity should be loaded from the relative URL: "/GebuehrenpositionService/gebuehrenposition/{id}" (HTTP-GET) If a new Gebuehrenposition entity has been created, the new entity should be posted to the relative URL: "/GebuehrenpositionService/gebuehrenposition" (HTTP-POST) If an existing Gebuehrenposition entity has been updated, the modified entity should be sent to the relative URL: "/GebuehrenpositionService/gebuehrenposition/{id}" (HTTP-PUT) If an existing Gebuehrenposition entity has to be deleted, the following relative URL should be called: "/GebuehrenpositionService/gebuehrenposition/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Behandlungsleistung columns: - column: DurchgefuehrtVonArzt - column: Behandlung - column: Gebuehrenposition - column: DurchgefuehrtVonPersonal - column: Menge - column: Multiplikator The table should have the title "Behandlungsleistungs" und the data must be loaded from the server with the following relative URL: "/PatientService/behandlungsleistung/gebuehrenposition/{id}" Add a HTML table to the view with the following Abrechnungsposten columns: - column: Menge - column: Multiplikator - column: Einzelpreis - column: Gebuehrenposition - column: Gesamtbetrag - column: Behandlungsleistung - column: Abrechnungsfall The table should have the title "Abrechnungspostens" und the data must be loaded from the server with the following relative URL: "/GebuehrenpositionService/abrechnungsposten/gebuehrenposition/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum