Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ShopProduktView
Please create a React-JS view called "ShopProduktView" for the fields of the ShopProdukt entity. The ShopProduktView must contain the following fields: - name: Einheitsgroesse type: STRING - name: IstAltersbeschraenkt type: BOOL - name: MarkenName type: Marke - name: Name type: STRING - name: ShopProduktKategorie type: ShopProduktKategorie - name: Sku type: STRING The data source for the [ShopProduktKategorie] select control should be loaded from the relative URL: "/ShopProduktKategorieService/shopproduktkategorie" (HTTP-GET) The data source for the [MarkenName] select control should be loaded from the relative URL: "/MarkeService/marke" (HTTP-GET) An existing ShopProdukt entity should be loaded from the relative URL: "/ShopService/shopprodukt/{id}" (HTTP-GET) If a new ShopProdukt entity has been created, the new entity should be posted to the relative URL: "/ShopService/shopprodukt" (HTTP-POST) If an existing ShopProdukt entity has been updated, the modified entity should be sent to the relative URL: "/ShopService/shopprodukt/{id}" (HTTP-PUT) If an existing ShopProdukt entity has to be deleted, the following relative URL should be called: "/ShopService/shopprodukt/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ShopProduktPreis columns: - column: Shop - column: Waehrung - column: GueltigVon - column: Preis - column: ShopProdukt - column: GueltigBis The table should have the title "ShopProduktPreiss" und the data must be loaded from the server with the following relative URL: "/ShopService/shopproduktpreis/shopprodukt/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum