Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
AbfallstromView
Please create a React-JS view called "AbfallstromView" for the fields of the Abfallstrom entity. The AbfallstromView must contain the following fields: - name: Abfallart type: Abfallart - name: Abfallfraktion type: Abfallfraktion - name: Abfallkategorie type: Abfallkategorie - name: Beschreibung type: STRING - name: Entstehungsjahr type: LONG - name: MengeTonnenGeschaetzt type: STRING - name: QuelleAkteur type: Akteur The data source for the [QuelleAkteur] select control should be loaded from the relative URL: "/AkteurService/akteur" (HTTP-GET) The data source for the [Abfallkategorie] select control should be loaded from the relative URL: "/GemeindeService/abfallkategorie" (HTTP-GET) The data source for the [Abfallfraktion] select control should be loaded from the relative URL: "/AbfallfraktionService/abfallfraktion" (HTTP-GET) The data source for the [Abfallart] select control should be loaded from the relative URL: "/AbfallartService/abfallart" (HTTP-GET) An existing Abfallstrom entity should be loaded from the relative URL: "/AbfallstromService/abfallstrom/{id}" (HTTP-GET) If a new Abfallstrom entity has been created, the new entity should be posted to the relative URL: "/AbfallstromService/abfallstrom" (HTTP-POST) If an existing Abfallstrom entity has been updated, the modified entity should be sent to the relative URL: "/AbfallstromService/abfallstrom/{id}" (HTTP-PUT) If an existing Abfallstrom entity has to be deleted, the following relative URL should be called: "/AbfallstromService/abfallstrom/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Behandlungsvorgang columns: - column: EnergieRueckgewinnungMWh - column: Behandlungsart - column: VorgangsDatum - column: AusgangsmengeTonnen - column: Abfallstrom - column: EingangsmengeTonnen - column: Anlage The table should have the title "Behandlungsvorgangs" und the data must be loaded from the server with the following relative URL: "/BehandlungsartService/behandlungsvorgang/abfallstrom/{id}" Add a HTML table to the view with the following Abfalltransport columns: - column: TransportDatum - column: ZielDeponie - column: Transportart - column: ZielAnlage - column: Abfallstrom - column: QuelleAnlage - column: TransportMengeTonnen The table should have the title "Abfalltransports" und the data must be loaded from the server with the following relative URL: "/DeponieService/abfalltransport/abfallstrom/{id}" Add a HTML table to the view with the following Sammelereignis columns: - column: SammelDatumZeit - column: Abfallstrom - column: GesammelteMengeTonnen - column: Sammelfahrzeug - column: Sammelroute The table should have the title "Sammelereigniss" und the data must be loaded from the server with the following relative URL: "/AbfallstromService/sammelereignis/abfallstrom/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum