Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
AntragView
Please create a React-JS view called "AntragView" for the fields of the Antrag entity. The AntragView must contain the following fields: - name: Antragsdatum type: DATE - name: AntragTyp type: STRING - name: Behoerde type: Behoerde - name: Gebuehr type: STRING - name: Person type: Person - name: Status type: STRING The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [Behoerde] select control should be loaded from the relative URL: "/BehoerdeService/behoerde" (HTTP-GET) An existing Antrag entity should be loaded from the relative URL: "/BehoerdeService/antrag/{id}" (HTTP-GET) If a new Antrag entity has been created, the new entity should be posted to the relative URL: "/BehoerdeService/antrag" (HTTP-POST) If an existing Antrag entity has been updated, the modified entity should be sent to the relative URL: "/BehoerdeService/antrag/{id}" (HTTP-PUT) If an existing Antrag entity has to be deleted, the following relative URL should be called: "/BehoerdeService/antrag/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GewerbeRegisterAuszug columns: - column: Antrag - column: Firmenname - column: Rechtsform - column: RegisterNummer The table should have the title "GewerbeRegisterAuszugs" und the data must be loaded from the server with the following relative URL: "/RechtsgrundlageService/gewerberegisterauszug/antrag/{id}" Add a HTML table to the view with the following MelderegisterAuszug columns: - column: AnzahlPersonen - column: Ausgabeformat - column: AuszugTyp - column: Antrag - column: MitHistorie The table should have the title "MelderegisterAuszugs" und the data must be loaded from the server with the following relative URL: "/GemeindeService/melderegisterauszug/antrag/{id}" Add a HTML table to the view with the following Bescheinigung columns: - column: Zustellung - column: BescheinigungTyp - column: Antrag - column: Ausstellungsdatum - column: GueltigBis The table should have the title "Bescheinigungs" und the data must be loaded from the server with the following relative URL: "/BehoerdeService/bescheinigung/antrag/{id}" Add a HTML table to the view with the following FahrzeugAdresseAenderung columns: - column: FahrzeugKennzeichen - column: WirksamAm - column: NeueAdresse - column: Antrag - column: AlteAdresse The table should have the title "FahrzeugAdresseAenderungs" und the data must be loaded from the server with the following relative URL: "/BehoerdeService/fahrzeugadresseaenderung/antrag/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum