Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
RechtsformApp
Please create a React-JS application for the RechtsformModule. The application has to offer the following views for the user interface: 1. KlientVersicherungView 2. RechtsformView 3. TraegerorganisationView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The KlientVersicherungView must contain the following fields: - name: GueltigBis type: DATE - name: GueltigVon type: DATE - name: IstPrimaer type: BOOL - name: Klient type: Klient - name: Versicherung type: Versicherung - name: Versicherungsart type: Versicherung - name: Versicherungsnummer type: Versicherung The data source for the [Versicherung] select control should be loaded from the relative URL: "/VersicherungService/versicherung" (HTTP-GET) The data source for the [Versicherungsart] select control should be loaded from the relative URL: "/VersicherungService/versicherung" (HTTP-GET) The data source for the [Klient] select control should be loaded from the relative URL: "/PflegedienstService/klient" (HTTP-GET) The data source for the [Versicherungsnummer] select control should be loaded from the relative URL: "/VersicherungService/versicherung" (HTTP-GET) An existing KlientVersicherung entity should be loaded from the relative URL: "/RechtsformService/klientversicherung/{id}" (HTTP-GET) If a new KlientVersicherung entity has been created, the new entity should be posted to the relative URL: "/RechtsformService/klientversicherung" (HTTP-POST) If an existing KlientVersicherung entity has been updated, the modified entity should be sent to the relative URL: "/RechtsformService/klientversicherung/{id}" (HTTP-PUT) If an existing KlientVersicherung entity has to be deleted, the following relative URL should be called: "/RechtsformService/klientversicherung/{id}" (HTTP-DELETE) 2. The RechtsformView must contain the following fields: - name: Beschreibung type: STRING - name: Code type: STRING - name: IstGemeinnuetzigTypisch type: BOOL An existing Rechtsform entity should be loaded from the relative URL: "/RechtsformService/rechtsform/{id}" (HTTP-GET) If a new Rechtsform entity has been created, the new entity should be posted to the relative URL: "/RechtsformService/rechtsform" (HTTP-POST) If an existing Rechtsform entity has been updated, the modified entity should be sent to the relative URL: "/RechtsformService/rechtsform/{id}" (HTTP-PUT) If an existing Rechtsform entity has to be deleted, the following relative URL should be called: "/RechtsformService/rechtsform/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Traegerorganisation columns: - column: IstKirchlich - column: IstGemeinnuetzig - column: Traegertyp - column: OffiziellerName - column: IstAktiv - column: Rechtsform - column: HauptsitzOrt - column: Steuernummer - column: Registrierungsnummer - column: Kurzname The table should have the title "Traegerorganisations" und the data must be loaded from the server with the following relative URL: "/RechtsformService/traegerorganisation/rechtsform/{id}" Add a HTML table to the view with the following Pflegedienst columns: - column: Pflegediensttyp - column: HauptstandortOrt - column: IstAktiv - column: Telefonnummer - column: Enddatum - column: EMailAdresse - column: IstZugelassenSgbV - column: OffiziellerName - column: Traegerorganisation - column: Kurzname - column: Startdatum - column: Rechtsform - column: WebseiteUrl - column: IstKirchlich - column: IstZugelassenSgbXI - column: IstGemeinnuetzig The table should have the title "Pflegediensts" und the data must be loaded from the server with the following relative URL: "/PflegedienstService/pflegedienst/rechtsform/{id}" 3. The TraegerorganisationView must contain the following fields: - name: HauptsitzOrt type: INT - name: IstAktiv type: BOOL - name: IstGemeinnuetzig type: BOOL - name: IstKirchlich type: BOOL - name: Kurzname type: STRING - name: OffiziellerName type: STRING - name: Rechtsform type: Rechtsform - name: Registrierungsnummer type: STRING - name: Steuernummer type: STRING - name: Traegertyp type: STRING The data source for the [Rechtsform] select control should be loaded from the relative URL: "/RechtsformService/rechtsform" (HTTP-GET) An existing Traegerorganisation entity should be loaded from the relative URL: "/RechtsformService/traegerorganisation/{id}" (HTTP-GET) If a new Traegerorganisation entity has been created, the new entity should be posted to the relative URL: "/RechtsformService/traegerorganisation" (HTTP-POST) If an existing Traegerorganisation entity has been updated, the modified entity should be sent to the relative URL: "/RechtsformService/traegerorganisation/{id}" (HTTP-PUT) If an existing Traegerorganisation entity has to be deleted, the following relative URL should be called: "/RechtsformService/traegerorganisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Pflegedienst columns: - column: Pflegediensttyp - column: HauptstandortOrt - column: IstAktiv - column: Telefonnummer - column: Enddatum - column: EMailAdresse - column: IstZugelassenSgbV - column: OffiziellerName - column: Traegerorganisation - column: Kurzname - column: Startdatum - column: Rechtsform - column: WebseiteUrl - column: IstKirchlich - column: IstZugelassenSgbXI - column: IstGemeinnuetzig The table should have the title "Pflegediensts" und the data must be loaded from the server with the following relative URL: "/PflegedienstService/pflegedienst/traegerorganisation/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum