Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
RechtsgrundlageApp
Please create a React-JS application for the RechtsgrundlageModule. The application has to offer the following views for the user interface: 1. EntgeltbestandteilView 2. LeistungsartView 3. RechtsgrundlageView 4. TeilnehmendePersonFinanzierungView 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 EntgeltbestandteilView must contain the following fields: - name: Beschreibung type: STRING - name: Code type: STRING - name: Name type: STRING - name: Rechtsgrundlage type: Rechtsgrundlage The data source for the [Rechtsgrundlage] select control should be loaded from the relative URL: "/RechtsgrundlageService/rechtsgrundlage" (HTTP-GET) An existing Entgeltbestandteil entity should be loaded from the relative URL: "/RechtsgrundlageService/entgeltbestandteil/{id}" (HTTP-GET) If a new Entgeltbestandteil entity has been created, the new entity should be posted to the relative URL: "/RechtsgrundlageService/entgeltbestandteil" (HTTP-POST) If an existing Entgeltbestandteil entity has been updated, the modified entity should be sent to the relative URL: "/RechtsgrundlageService/entgeltbestandteil/{id}" (HTTP-PUT) If an existing Entgeltbestandteil entity has to be deleted, the following relative URL should be called: "/RechtsgrundlageService/entgeltbestandteil/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Entgeltzahlungsbestandteil columns: - column: Entgeltbestandteil - column: Entgeltzahlung - column: Betrag The table should have the title "Entgeltzahlungsbestandteils" und the data must be loaded from the server with the following relative URL: "/EntgeltzahlungService/entgeltzahlungsbestandteil/entgeltbestandteil/{id}" 2. The LeistungsartView must contain the following fields: - name: Beschreibung type: STRING - name: Code type: STRING - name: Name type: STRING - name: Rechtsgrundlage type: Rechtsgrundlage The data source for the [Rechtsgrundlage] select control should be loaded from the relative URL: "/RechtsgrundlageService/rechtsgrundlage" (HTTP-GET) An existing Leistungsart entity should be loaded from the relative URL: "/RechtsgrundlageService/leistungsart/{id}" (HTTP-GET) If a new Leistungsart entity has been created, the new entity should be posted to the relative URL: "/RechtsgrundlageService/leistungsart" (HTTP-POST) If an existing Leistungsart entity has been updated, the modified entity should be sent to the relative URL: "/RechtsgrundlageService/leistungsart/{id}" (HTTP-PUT) If an existing Leistungsart entity has to be deleted, the following relative URL should be called: "/RechtsgrundlageService/leistungsart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TeilnehmendePersonFinanzierung columns: - column: Leistungstraeger - column: TeilnehmendePerson - column: Leistungsart - column: VonDatum - column: Bewilligungsnummer - column: BisDatum The table should have the title "TeilnehmendePersonFinanzierungs" und the data must be loaded from the server with the following relative URL: "/RechtsgrundlageService/teilnehmendepersonfinanzierung/leistungsart/{id}" 3. The RechtsgrundlageView must contain the following fields: - name: Beschreibung type: STRING - name: Code type: STRING - name: GueltigBis type: DATE - name: GueltigVon type: DATE - name: Titel type: STRING An existing Rechtsgrundlage entity should be loaded from the relative URL: "/RechtsgrundlageService/rechtsgrundlage/{id}" (HTTP-GET) If a new Rechtsgrundlage entity has been created, the new entity should be posted to the relative URL: "/RechtsgrundlageService/rechtsgrundlage" (HTTP-POST) If an existing Rechtsgrundlage entity has been updated, the modified entity should be sent to the relative URL: "/RechtsgrundlageService/rechtsgrundlage/{id}" (HTTP-PUT) If an existing Rechtsgrundlage entity has to be deleted, the following relative URL should be called: "/RechtsgrundlageService/rechtsgrundlage/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Entgeltbestandteil columns: - column: Code - column: Rechtsgrundlage - column: Name - column: Beschreibung The table should have the title "Entgeltbestandteils" und the data must be loaded from the server with the following relative URL: "/RechtsgrundlageService/entgeltbestandteil/rechtsgrundlage/{id}" Add a HTML table to the view with the following Leistungsart columns: - column: Code - column: Beschreibung - column: Name - column: Rechtsgrundlage The table should have the title "Leistungsarts" und the data must be loaded from the server with the following relative URL: "/RechtsgrundlageService/leistungsart/rechtsgrundlage/{id}" Add a HTML table to the view with the following Werkstatt columns: - column: Beschreibung - column: Name - column: Rechtsgrundlage - column: MitgliedEaspd - column: Kurzname - column: Land - column: Bundesland - column: Haupttraeger - column: MitgliedBagWfbm - column: Gruendungsjahr The table should have the title "Werkstatts" und the data must be loaded from the server with the following relative URL: "/WerkstattService/werkstatt/rechtsgrundlage/{id}" 4. The TeilnehmendePersonFinanzierungView must contain the following fields: - name: Bewilligungsnummer type: STRING - name: BisDatum type: DATE - name: Leistungsart type: Leistungsart - name: Leistungstraeger type: Leistungstraeger - name: TeilnehmendePerson type: TeilnehmendePerson - name: VonDatum type: DATE The data source for the [Leistungsart] select control should be loaded from the relative URL: "/RechtsgrundlageService/leistungsart" (HTTP-GET) The data source for the [TeilnehmendePerson] select control should be loaded from the relative URL: "/TeilnehmendePersonService/teilnehmendeperson" (HTTP-GET) The data source for the [Leistungstraeger] select control should be loaded from the relative URL: "/LandService/leistungstraeger" (HTTP-GET) An existing TeilnehmendePersonFinanzierung entity should be loaded from the relative URL: "/RechtsgrundlageService/teilnehmendepersonfinanzierung/{id}" (HTTP-GET) If a new TeilnehmendePersonFinanzierung entity has been created, the new entity should be posted to the relative URL: "/RechtsgrundlageService/teilnehmendepersonfinanzierung" (HTTP-POST) If an existing TeilnehmendePersonFinanzierung entity has been updated, the modified entity should be sent to the relative URL: "/RechtsgrundlageService/teilnehmendepersonfinanzierung/{id}" (HTTP-PUT) If an existing TeilnehmendePersonFinanzierung entity has to be deleted, the following relative URL should be called: "/RechtsgrundlageService/teilnehmendepersonfinanzierung/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum