Overview
Summary
Contact
Donate
Imprint
Prompt for the
ShippingDetailView
Please create a React-JS view called "ShippingDetailView" for the fields of the ShippingDetail entity. The ShippingDetailView must contain the following fields: - name: ActualDeliveryDate type: DATE - name: Carrier type: STRING - name: Currency type: STRING - name: EstimatedDeliveryDate type: DATE - name: OrderItem type: OrderItem - name: ServiceLevel type: STRING - name: ShipDate type: DATE - name: ShippingCost type: STRING - name: TrackingNumber type: STRING The data source for the [OrderItem] select control should be loaded from the relative URL: "/UserAccountService/orderitem" (HTTP-GET) An existing ShippingDetail entity should be loaded from the relative URL: "/UserAccountService/shippingdetail/{id}" (HTTP-GET) If a new ShippingDetail entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/shippingdetail" (HTTP-POST) If an existing ShippingDetail entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/shippingdetail/{id}" (HTTP-PUT) If an existing ShippingDetail entity has to be deleted, the following relative URL should be called: "/UserAccountService/shippingdetail/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint