Overview
Summary
Contact
Donate
Imprint
Prompt for the
InventoryItemView
Please create a React-JS view called "InventoryItemView" for the fields of the InventoryItem entity. The InventoryItemView must contain the following fields: - name: FulfillmentCenter type: FulfillmentCenter - name: Offer type: Offer - name: QuantityOnHand type: LONG - name: QuantityReserved type: LONG - name: UpdatedAt type: DATE The data source for the [FulfillmentCenter] select control should be loaded from the relative URL: "/FulfillmentCenterService/fulfillmentcenter" (HTTP-GET) The data source for the [Offer] select control should be loaded from the relative URL: "/OfferService/offer" (HTTP-GET) An existing InventoryItem entity should be loaded from the relative URL: "/OfferService/inventoryitem/{id}" (HTTP-GET) If a new InventoryItem entity has been created, the new entity should be posted to the relative URL: "/OfferService/inventoryitem" (HTTP-POST) If an existing InventoryItem entity has been updated, the modified entity should be sent to the relative URL: "/OfferService/inventoryitem/{id}" (HTTP-PUT) If an existing InventoryItem entity has to be deleted, the following relative URL should be called: "/OfferService/inventoryitem/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint