Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ArtikelView
Please create a React-JS view called "ArtikelView" for the fields of the Artikel entity. The ArtikelView must contain the following fields: - name: Fuellmenge type: STRING - name: Handelsmarke type: STRING - name: HerstellerMarke type: STRING - name: IstBio type: BOOL - name: IstFrischware type: BOOL - name: IstNonFood type: BOOL - name: Mindesthaltbarkeitsdatum type: DATE - name: Name type: STRING - name: Packungseinheit type: STRING - name: PreisBrutto type: STRING - name: Regal type: Regal - name: Regalzone type: Regalzone - name: Waehrung type: STRING - name: Warengruppe type: Warengruppe The data source for the [Warengruppe] select control should be loaded from the relative URL: "/RegalzoneService/warengruppe" (HTTP-GET) The data source for the [Regal] select control should be loaded from the relative URL: "/RegalzoneService/regal" (HTTP-GET) The data source for the [Regalzone] select control should be loaded from the relative URL: "/RegalzoneService/regalzone" (HTTP-GET) An existing Artikel entity should be loaded from the relative URL: "/RegalzoneService/artikel/{id}" (HTTP-GET) If a new Artikel entity has been created, the new entity should be posted to the relative URL: "/RegalzoneService/artikel" (HTTP-POST) If an existing Artikel entity has been updated, the modified entity should be sent to the relative URL: "/RegalzoneService/artikel/{id}" (HTTP-PUT) If an existing Artikel entity has to be deleted, the following relative URL should be called: "/RegalzoneService/artikel/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Regalplatzierung columns: - column: Platzierungsdatum - column: Regal - column: Regalzone - column: Artikel - column: PraemieEuro The table should have the title "Regalplatzierungs" und the data must be loaded from the server with the following relative URL: "/RegalzoneService/regalplatzierung/artikel/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum