Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ProzessschritttypApp
Please create a React-JS application for the ProzessschritttypModule. The application has to offer the following views for the user interface: 1. ProzessschrittView 2. ProzessschritttypView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The ProzessschrittView must contain the following fields: - name: Aufbereitungsprozess type: Aufbereitungsprozess - name: Beschreibung type: STRING - name: DauerMinuten type: DOUBLE - name: Name type: STRING - name: Prozessschritttyp type: Prozessschritttyp - name: Reihenfolge type: LONG The data source for the [Prozessschritttyp] select control should be loaded from the relative URL: "/ProzessschritttypService/prozessschritttyp" (HTTP-GET) The data source for the [Aufbereitungsprozess] select control should be loaded from the relative URL: "/AufbereitungsanlageService/aufbereitungsprozess" (HTTP-GET) An existing Prozessschritt entity should be loaded from the relative URL: "/ProzessschritttypService/prozessschritt/{id}" (HTTP-GET) If a new Prozessschritt entity has been created, the new entity should be posted to the relative URL: "/ProzessschritttypService/prozessschritt" (HTTP-POST) If an existing Prozessschritt entity has been updated, the modified entity should be sent to the relative URL: "/ProzessschritttypService/prozessschritt/{id}" (HTTP-PUT) If an existing Prozessschritt entity has to be deleted, the following relative URL should be called: "/ProzessschritttypService/prozessschritt/{id}" (HTTP-DELETE) 2. The ProzessschritttypView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Prozessschritttyp entity should be loaded from the relative URL: "/ProzessschritttypService/prozessschritttyp/{id}" (HTTP-GET) If a new Prozessschritttyp entity has been created, the new entity should be posted to the relative URL: "/ProzessschritttypService/prozessschritttyp" (HTTP-POST) If an existing Prozessschritttyp entity has been updated, the modified entity should be sent to the relative URL: "/ProzessschritttypService/prozessschritttyp/{id}" (HTTP-PUT) If an existing Prozessschritttyp entity has to be deleted, the following relative URL should be called: "/ProzessschritttypService/prozessschritttyp/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Prozessschritt columns: - column: Name - column: DauerMinuten - column: Prozessschritttyp - column: Aufbereitungsprozess - column: Reihenfolge - column: Beschreibung The table should have the title "Prozessschritts" und the data must be loaded from the server with the following relative URL: "/ProzessschritttypService/prozessschritt/prozessschritttyp/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum