Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BerufApp
Please create a React-JS application for the BerufModule. The application has to offer the following views for the user interface: 1. BerufView 2. BerufLandRegelungView 3. VersicherungsleistungView 4. VersicherungstarifView 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 BerufView must contain the following fields: - name: Beschreibung type: STRING - name: IstAlternativmedizinisch type: BOOL - name: IstGeschuetzteBerufsbezeichnung type: BOOL - name: IstMedizinischerBeruf type: BOOL - name: Name type: STRING An existing Beruf entity should be loaded from the relative URL: "/BerufService/beruf/{id}" (HTTP-GET) If a new Beruf entity has been created, the new entity should be posted to the relative URL: "/BerufService/beruf" (HTTP-POST) If an existing Beruf entity has been updated, the modified entity should be sent to the relative URL: "/BerufService/beruf/{id}" (HTTP-PUT) If an existing Beruf entity has to be deleted, the following relative URL should be called: "/BerufService/beruf/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Versicherungsleistung columns: - column: Beruf - column: Bedingungen - column: Behandlungsmethode - column: Versicherungstarif - column: ErstattungssatzProzent - column: MaxErstattungProJahr The table should have the title "Versicherungsleistungs" und the data must be loaded from the server with the following relative URL: "/BerufService/versicherungsleistung/beruf/{id}" Add a HTML table to the view with the following Erlaubnis columns: - column: Ausstellungsdatum - column: Erlaubnistyp - column: Land - column: Ablaufdatum - column: Gesetz - column: Hinweise - column: Behoerde - column: Person - column: Widerrufsdatum - column: IstWiderrufen - column: Beruf - column: Sektoralerlaubnisart - column: Erlaubnisnummer The table should have the title "Erlaubniss" und the data must be loaded from the server with the following relative URL: "/LandService/erlaubnis/beruf/{id}" Add a HTML table to the view with the following Pruefung columns: - column: MuendlichErforderlich - column: Name - column: MaxVersuche - column: SchriftlichErforderlich - column: Land - column: Behoerde - column: Beschreibung - column: Beruf - column: Mindestpunktzahl - column: Gesetz The table should have the title "Pruefungs" und the data must be loaded from the server with the following relative URL: "/PruefungService/pruefung/beruf/{id}" Add a HTML table to the view with the following Ausbildungsprogramm columns: - column: StaatlichUeberwacht - column: Beruf - column: Modus - column: Ausbildungsinstitution - column: DauerMonate - column: Name - column: Beschreibung - column: Studiengebuehr The table should have the title "Ausbildungsprogramms" und the data must be loaded from the server with the following relative URL: "/LandService/ausbildungsprogramm/beruf/{id}" Add a HTML table to the view with the following BerufLandRegelung columns: - column: Gesetz - column: Hinweise - column: Strafbarkeit - column: Beruf - column: Beschreibung - column: Regelungsstatus - column: Land The table should have the title "BerufLandRegelungs" und the data must be loaded from the server with the following relative URL: "/BerufService/beruflandregelung/beruf/{id}" 2. The BerufLandRegelungView must contain the following fields: - name: Beruf type: Beruf - name: Beschreibung type: STRING - name: Gesetz type: Gesetz - name: Hinweise type: STRING - name: Land type: Land - name: Regelungsstatus type: STRING - name: Strafbarkeit type: BOOL The data source for the [Beruf] select control should be loaded from the relative URL: "/BerufService/beruf" (HTTP-GET) The data source for the [Gesetz] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing BerufLandRegelung entity should be loaded from the relative URL: "/BerufService/beruflandregelung/{id}" (HTTP-GET) If a new BerufLandRegelung entity has been created, the new entity should be posted to the relative URL: "/BerufService/beruflandregelung" (HTTP-POST) If an existing BerufLandRegelung entity has been updated, the modified entity should be sent to the relative URL: "/BerufService/beruflandregelung/{id}" (HTTP-PUT) If an existing BerufLandRegelung entity has to be deleted, the following relative URL should be called: "/BerufService/beruflandregelung/{id}" (HTTP-DELETE) 3. The VersicherungsleistungView must contain the following fields: - name: Bedingungen type: STRING - name: Behandlungsmethode type: Behandlungsmethode - name: Beruf type: Beruf - name: ErstattungssatzProzent type: STRING - name: MaxErstattungProJahr type: STRING - name: Versicherungstarif type: Versicherungstarif The data source for the [Beruf] select control should be loaded from the relative URL: "/BerufService/beruf" (HTTP-GET) The data source for the [Versicherungstarif] select control should be loaded from the relative URL: "/BerufService/versicherungstarif" (HTTP-GET) The data source for the [Behandlungsmethode] select control should be loaded from the relative URL: "/BehandlungsmethodeService/behandlungsmethode" (HTTP-GET) An existing Versicherungsleistung entity should be loaded from the relative URL: "/BerufService/versicherungsleistung/{id}" (HTTP-GET) If a new Versicherungsleistung entity has been created, the new entity should be posted to the relative URL: "/BerufService/versicherungsleistung" (HTTP-POST) If an existing Versicherungsleistung entity has been updated, the modified entity should be sent to the relative URL: "/BerufService/versicherungsleistung/{id}" (HTTP-PUT) If an existing Versicherungsleistung entity has to be deleted, the following relative URL should be called: "/BerufService/versicherungsleistung/{id}" (HTTP-DELETE) 4. The VersicherungstarifView must contain the following fields: - name: Beschreibung type: STRING - name: IstZusatzversicherung type: BOOL - name: Name type: STRING - name: Versicherung type: Versicherung The data source for the [Versicherung] select control should be loaded from the relative URL: "/BehandlungsmethodeService/versicherung" (HTTP-GET) An existing Versicherungstarif entity should be loaded from the relative URL: "/BerufService/versicherungstarif/{id}" (HTTP-GET) If a new Versicherungstarif entity has been created, the new entity should be posted to the relative URL: "/BerufService/versicherungstarif" (HTTP-POST) If an existing Versicherungstarif entity has been updated, the modified entity should be sent to the relative URL: "/BerufService/versicherungstarif/{id}" (HTTP-PUT) If an existing Versicherungstarif entity has to be deleted, the following relative URL should be called: "/BerufService/versicherungstarif/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Versicherungsleistung columns: - column: Beruf - column: Bedingungen - column: Behandlungsmethode - column: Versicherungstarif - column: ErstattungssatzProzent - column: MaxErstattungProJahr The table should have the title "Versicherungsleistungs" und the data must be loaded from the server with the following relative URL: "/BerufService/versicherungsleistung/versicherungstarif/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum