Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
AufloesungsgrundApp
Please create a React-JS application for the AufloesungsgrundModule. The application has to offer the following views for the user interface: 1. AufloesungView 2. AufloesungsgrundView 3. BeschlussView 4. VersammlungView 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 AufloesungView must contain the following fields: - name: Aufloesungsgrund type: Aufloesungsgrund - name: Beschlussdatum type: Beschluss - name: Durch type: STRING - name: Hinweise type: STRING - name: Verein type: Verein - name: Wirksamkeitsdatum type: DATE The data source for the [Verein] select control should be loaded from the relative URL: "/VereinService/verein" (HTTP-GET) The data source for the [Beschlussdatum] select control should be loaded from the relative URL: "/AufloesungsgrundService/beschluss" (HTTP-GET) The data source for the [Aufloesungsgrund] select control should be loaded from the relative URL: "/AufloesungsgrundService/aufloesungsgrund" (HTTP-GET) An existing Aufloesung entity should be loaded from the relative URL: "/AufloesungsgrundService/aufloesung/{id}" (HTTP-GET) If a new Aufloesung entity has been created, the new entity should be posted to the relative URL: "/AufloesungsgrundService/aufloesung" (HTTP-POST) If an existing Aufloesung entity has been updated, the modified entity should be sent to the relative URL: "/AufloesungsgrundService/aufloesung/{id}" (HTTP-PUT) If an existing Aufloesung entity has to be deleted, the following relative URL should be called: "/AufloesungsgrundService/aufloesung/{id}" (HTTP-DELETE) 2. The AufloesungsgrundView must contain the following fields: - name: Beschreibung type: STRING - name: Bezeichnung type: STRING - name: Code type: STRING An existing Aufloesungsgrund entity should be loaded from the relative URL: "/AufloesungsgrundService/aufloesungsgrund/{id}" (HTTP-GET) If a new Aufloesungsgrund entity has been created, the new entity should be posted to the relative URL: "/AufloesungsgrundService/aufloesungsgrund" (HTTP-POST) If an existing Aufloesungsgrund entity has been updated, the modified entity should be sent to the relative URL: "/AufloesungsgrundService/aufloesungsgrund/{id}" (HTTP-PUT) If an existing Aufloesungsgrund entity has to be deleted, the following relative URL should be called: "/AufloesungsgrundService/aufloesungsgrund/{id}" (HTTP-DELETE) 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/aufloesungsgrund/{id}" 3. The BeschlussView must contain the following fields: - name: Beschlusstyp type: Beschlusstyp - name: IstSatzungsaenderung type: BOOL - name: Text type: STRING - name: Titel type: STRING - name: Versammlung type: Versammlung The data source for the [Beschlusstyp] select control should be loaded from the relative URL: "/BeschlusstypService/beschlusstyp" (HTTP-GET) The data source for the [Versammlung] select control should be loaded from the relative URL: "/AufloesungsgrundService/versammlung" (HTTP-GET) An existing Beschluss entity should be loaded from the relative URL: "/AufloesungsgrundService/beschluss/{id}" (HTTP-GET) If a new Beschluss entity has been created, the new entity should be posted to the relative URL: "/AufloesungsgrundService/beschluss" (HTTP-POST) If an existing Beschluss entity has been updated, the modified entity should be sent to the relative URL: "/AufloesungsgrundService/beschluss/{id}" (HTTP-PUT) If an existing Beschluss entity has to be deleted, the following relative URL should be called: "/AufloesungsgrundService/beschluss/{id}" (HTTP-DELETE) 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/beschlussdatum/{id}" 4. The VersammlungView must contain the following fields: - name: Datum type: DATE - name: IstAusserordentlich type: BOOL - name: IstOeffentlich type: BOOL - name: Organ type: Organ - name: Ort type: STRING - name: Versammlungstyp type: Versammlungstyp The data source for the [Versammlungstyp] select control should be loaded from the relative URL: "/VersammlungstypService/versammlungstyp" (HTTP-GET) The data source for the [Organ] select control should be loaded from the relative URL: "/VereinService/organ" (HTTP-GET) An existing Versammlung entity should be loaded from the relative URL: "/AufloesungsgrundService/versammlung/{id}" (HTTP-GET) If a new Versammlung entity has been created, the new entity should be posted to the relative URL: "/AufloesungsgrundService/versammlung" (HTTP-POST) If an existing Versammlung entity has been updated, the modified entity should be sent to the relative URL: "/AufloesungsgrundService/versammlung/{id}" (HTTP-PUT) If an existing Versammlung entity has to be deleted, the following relative URL should be called: "/AufloesungsgrundService/versammlung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Beschluss columns: - column: Text - column: Beschlusstyp - column: Versammlung - column: IstSatzungsaenderung - column: Titel The table should have the title "Beschlusss" und the data must be loaded from the server with the following relative URL: "/AufloesungsgrundService/beschluss/versammlung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum