Overview
Summary
Contact
Donate
Imprint
Prompt for the
FulfillmentCenterView
Please create a React-JS view called "FulfillmentCenterView" for the fields of the FulfillmentCenter entity. The FulfillmentCenterView must contain the following fields: - name: Address type: Address - name: Code type: STRING - name: CreatedAt type: DATE - name: Name type: STRING - name: UpdatedAt type: DATE The data source for the [Address] select control should be loaded from the relative URL: "/FulfillmentCenterService/address" (HTTP-GET) An existing FulfillmentCenter entity should be loaded from the relative URL: "/FulfillmentCenterService/fulfillmentcenter/{id}" (HTTP-GET) If a new FulfillmentCenter entity has been created, the new entity should be posted to the relative URL: "/FulfillmentCenterService/fulfillmentcenter" (HTTP-POST) If an existing FulfillmentCenter entity has been updated, the modified entity should be sent to the relative URL: "/FulfillmentCenterService/fulfillmentcenter/{id}" (HTTP-PUT) If an existing FulfillmentCenter entity has to be deleted, the following relative URL should be called: "/FulfillmentCenterService/fulfillmentcenter/{id}" (HTTP-DELETE) Add a HTML table to the view with the following InventoryItem columns: - column: QuantityOnHand - column: Offer - column: UpdatedAt - column: QuantityReserved - column: FulfillmentCenter The table should have the title "InventoryItems" und the data must be loaded from the server with the following relative URL: "/OfferService/inventoryitem/fulfillmentcenter/{id}" Add a HTML table to the view with the following Shipment columns: - column: Status - column: CustomerOrder - column: ShippedAt - column: CreatedAt - column: Carrier - column: DeliveredAt - column: TrackingNumber - column: FulfillmentCenter The table should have the title "Shipments" und the data must be loaded from the server with the following relative URL: "/FulfillmentCenterService/shipment/fulfillmentcenter/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint