Overview
Summary
Contact
Donate
Imprint
Prompt for the
PortCallView
Please create a React-JS view called "PortCallView" for the fields of the PortCall entity. The PortCallView must contain the following fields: - name: ArrivalActualUtc type: DATE - name: ArrivalEstimatedUtc type: DATE - name: BerthName type: STRING - name: DepartureActualUtc type: DATE - name: DepartureEstimatedUtc type: DATE - name: DraftArrival type: STRING - name: DraftDeparture type: STRING - name: Port type: Port - name: Reason type: STRING - name: Route type: Route - name: Vessel type: Vessel The data source for the [Vessel] select control should be loaded from the relative URL: "/VesselService/vessel" (HTTP-GET) The data source for the [Port] select control should be loaded from the relative URL: "/PortService/port" (HTTP-GET) The data source for the [Route] select control should be loaded from the relative URL: "/PortService/route" (HTTP-GET) An existing PortCall entity should be loaded from the relative URL: "/SubscriptionPlanService/portcall/{id}" (HTTP-GET) If a new PortCall entity has been created, the new entity should be posted to the relative URL: "/SubscriptionPlanService/portcall" (HTTP-POST) If an existing PortCall entity has been updated, the modified entity should be sent to the relative URL: "/SubscriptionPlanService/portcall/{id}" (HTTP-PUT) If an existing PortCall entity has to be deleted, the following relative URL should be called: "/SubscriptionPlanService/portcall/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint