Overview
Summary
Contact
Donate
Imprint
Prompt for the
ShipmentItemView
Please create a React-JS view called "ShipmentItemView" for the fields of the ShipmentItem entity. The ShipmentItemView must contain the following fields: - name: OrderItem type: OrderItem - name: Quantity type: LONG - name: Shipment type: Shipment The data source for the [OrderItem] select control should be loaded from the relative URL: "/ReturnRequestService/orderitem" (HTTP-GET) The data source for the [Shipment] select control should be loaded from the relative URL: "/FulfillmentCenterService/shipment" (HTTP-GET) An existing ShipmentItem entity should be loaded from the relative URL: "/FulfillmentCenterService/shipmentitem/{id}" (HTTP-GET) If a new ShipmentItem entity has been created, the new entity should be posted to the relative URL: "/FulfillmentCenterService/shipmentitem" (HTTP-POST) If an existing ShipmentItem entity has been updated, the modified entity should be sent to the relative URL: "/FulfillmentCenterService/shipmentitem/{id}" (HTTP-PUT) If an existing ShipmentItem entity has to be deleted, the following relative URL should be called: "/FulfillmentCenterService/shipmentitem/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint