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