Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
VereinApp
Please create a React-JS application for the VereinModule. The application has to offer the following views for the user interface: 1. DokumentView 2. LandView 3. OrganView 4. VereinView 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 DokumentView must contain the following fields: - name: Beschreibung type: STRING - name: Dokumenttyp type: Dokumenttyp - name: Erstellungsdatum type: DATE - name: Titel type: STRING - name: Url type: STRING - name: Verein type: Verein The data source for the [Verein] select control should be loaded from the relative URL: "/VereinService/verein" (HTTP-GET) The data source for the [Dokumenttyp] select control should be loaded from the relative URL: "/DokumenttypService/dokumenttyp" (HTTP-GET) An existing Dokument entity should be loaded from the relative URL: "/VereinService/dokument/{id}" (HTTP-GET) If a new Dokument entity has been created, the new entity should be posted to the relative URL: "/VereinService/dokument" (HTTP-POST) If an existing Dokument entity has been updated, the modified entity should be sent to the relative URL: "/VereinService/dokument/{id}" (HTTP-PUT) If an existing Dokument entity has to be deleted, the following relative URL should be called: "/VereinService/dokument/{id}" (HTTP-DELETE) 2. The LandView must contain the following fields: - name: AmtlicherName type: STRING - name: IsoCode type: STRING - name: Name type: STRING - name: Region type: STRING An existing Land entity should be loaded from the relative URL: "/VereinService/land/{id}" (HTTP-GET) If a new Land entity has been created, the new entity should be posted to the relative URL: "/VereinService/land" (HTTP-POST) If an existing Land entity has been updated, the modified entity should be sent to the relative URL: "/VereinService/land/{id}" (HTTP-PUT) If an existing Land entity has to be deleted, the following relative URL should be called: "/VereinService/land/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Gesetz columns: - column: Gesetzestyp - column: Land - column: Titel - column: Zitierweise - column: Kurztitel - column: GueltigVon - column: Beschreibung - column: GueltigBis The table should have the title "Gesetzs" und the data must be loaded from the server with the following relative URL: "/GesetzService/gesetz/land/{id}" Add a HTML table to the view with the following Verein columns: - column: Aufloesungsdatum - column: IstKirchlich - column: SitzAdresse - column: Name - column: IstMildtaetig - column: SitzPlz - column: IstPolitisch - column: Rechtsform - column: Kurzname - column: IstEingetragen - column: IstGemeinnuetzig - column: SatzungUrl - column: IstSportlich - column: Registernummer - column: Gruendungsdatum - column: IstInternational - column: IstDachverband - column: SitzOrt - column: Oberverein - column: Register - column: Land - column: Zweckbeschreibung The table should have the title "Vereins" und the data must be loaded from the server with the following relative URL: "/VereinService/verein/land/{id}" Add a HTML table to the view with the following Vereinsregister columns: - column: SeitJahr - column: Land - column: Registergericht - column: IstElektronisch - column: Name The table should have the title "Vereinsregisters" und the data must be loaded from the server with the following relative URL: "/MitgliedService/vereinsregister/land/{id}" Add a HTML table to the view with the following Foerderprogramm columns: - column: Beschreibung - column: Name - column: Traeger - column: Land The table should have the title "Foerderprogramms" und the data must be loaded from the server with the following relative URL: "/FoerderprogrammService/foerderprogramm/land/{id}" Add a HTML table to the view with the following Gericht columns: - column: Ort - column: IstRegistergericht - column: Name - column: Land The table should have the title "Gerichts" und the data must be loaded from the server with the following relative URL: "/FoerderprogrammService/gericht/land/{id}" 3. The OrganView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING - name: Organtyp type: Organtyp - name: Verein type: Verein The data source for the [Verein] select control should be loaded from the relative URL: "/VereinService/verein" (HTTP-GET) The data source for the [Organtyp] select control should be loaded from the relative URL: "/DokumenttypService/organtyp" (HTTP-GET) An existing Organ entity should be loaded from the relative URL: "/VereinService/organ/{id}" (HTTP-GET) If a new Organ entity has been created, the new entity should be posted to the relative URL: "/VereinService/organ" (HTTP-POST) If an existing Organ entity has been updated, the modified entity should be sent to the relative URL: "/VereinService/organ/{id}" (HTTP-PUT) If an existing Organ entity has to be deleted, the following relative URL should be called: "/VereinService/organ/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Organmitglied columns: - column: BisDatum - column: Organ - column: Rolle - column: IstStimmberechtigt - column: Mitglied - column: VonDatum The table should have the title "Organmitglieds" und the data must be loaded from the server with the following relative URL: "/MitgliedService/organmitglied/organ/{id}" Add a HTML table to the view with the following Versammlung columns: - column: Ort - column: Datum - column: Versammlungstyp - column: IstOeffentlich - column: IstAusserordentlich - column: Organ The table should have the title "Versammlungs" und the data must be loaded from the server with the following relative URL: "/AufloesungsgrundService/versammlung/organ/{id}" 4. The VereinView must contain the following fields: - name: Aufloesungsdatum type: DATE - name: Gruendungsdatum type: DATE - name: IstDachverband type: BOOL - name: IstEingetragen type: BOOL - name: IstGemeinnuetzig type: BOOL - name: IstInternational type: BOOL - name: IstKirchlich type: BOOL - name: IstMildtaetig type: BOOL - name: IstPolitisch type: BOOL - name: IstSportlich type: BOOL - name: Kurzname type: STRING - name: Land type: Land - name: Name type: STRING - name: Oberverein type: LONG - name: Rechtsform type: Rechtsform - name: Register type: LONG - name: Registernummer type: STRING - name: SatzungUrl type: STRING - name: SitzAdresse type: STRING - name: SitzOrt type: STRING - name: SitzPlz type: STRING - name: Zweckbeschreibung type: STRING The data source for the [Rechtsform] select control should be loaded from the relative URL: "/BeschlusstypService/rechtsform" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/VereinService/land" (HTTP-GET) An existing Verein entity should be loaded from the relative URL: "/VereinService/verein/{id}" (HTTP-GET) If a new Verein entity has been created, the new entity should be posted to the relative URL: "/VereinService/verein" (HTTP-POST) If an existing Verein entity has been updated, the modified entity should be sent to the relative URL: "/VereinService/verein/{id}" (HTTP-PUT) If an existing Verein entity has to be deleted, the following relative URL should be called: "/VereinService/verein/{id}" (HTTP-DELETE) Add a HTML table to the view with the following VereinWettbewerb columns: - column: Wettbewerb - column: Saison - column: Verein - column: Platzierung The table should have the title "VereinWettbewerbs" und the data must be loaded from the server with the following relative URL: "/BeschlusstypService/vereinwettbewerb/verein/{id}" Add a HTML table to the view with the following VereinVereinsart columns: - column: Vereinsart - column: Verein The table should have the title "VereinVereinsarts" und the data must be loaded from the server with the following relative URL: "/DokumenttypService/vereinvereinsart/verein/{id}" Add a HTML table to the view with the following Aufloesung columns: - column: Hinweise - column: Durch - column: Beschlussdatum - column: Aufloesungsgrund - column: Verein - column: Wirksamkeitsdatum The table should have the title "Aufloesungs" und the data must be loaded from the server with the following relative URL: "/AufloesungsgrundService/aufloesung/verein/{id}" Add a HTML table to the view with the following Dokument columns: - column: Dokumenttyp - column: Verein - column: Titel - column: Url - column: Erstellungsdatum - column: Beschreibung The table should have the title "Dokuments" und the data must be loaded from the server with the following relative URL: "/VereinService/dokument/verein/{id}" Add a HTML table to the view with the following Foerderentscheidung columns: - column: Gericht - column: Verein - column: Waehrung - column: IstAusBeendetemVerfahren - column: Datum - column: Begruendung - column: Foerderprogramm - column: Betrag The table should have the title "Foerderentscheidungs" und the data must be loaded from the server with the following relative URL: "/FoerderprogrammService/foerderentscheidung/verein/{id}" Add a HTML table to the view with the following Mitgliedschaft columns: - column: IstAktiv - column: Austrittsdatum - column: Verein - column: Mitglied - column: Eintrittsdatum - column: Mitgliedschaftsart The table should have the title "Mitgliedschafts" und the data must be loaded from the server with the following relative URL: "/VersammlungstypService/mitgliedschaft/verein/{id}" Add a HTML table to the view with the following Organ columns: - column: Name - column: Verein - column: Organtyp - column: Beschreibung The table should have the title "Organs" und the data must be loaded from the server with the following relative URL: "/VereinService/organ/verein/{id}" Add a HTML table to the view with the following VereinGesetz columns: - column: Gesetz - column: Verein - column: Anwendungsbereich The table should have the title "VereinGesetzs" und the data must be loaded from the server with the following relative URL: "/GesetzService/vereingesetz/verein/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum