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