Overview
Summary
Contact
Donate
Imprint
Prompt for the
LogisticsPartnerView
Please create a React-JS view called "LogisticsPartnerView" for the fields of the LogisticsPartner entity. The LogisticsPartnerView must contain the following fields: - name: Company type: Company - name: Description type: STRING - name: PartnershipEndDate type: DATE - name: PartnershipStartDate type: DATE The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing LogisticsPartner entity should be loaded from the relative URL: "/LogisticsPartnerService/logisticspartner/{id}" (HTTP-GET) If a new LogisticsPartner entity has been created, the new entity should be posted to the relative URL: "/LogisticsPartnerService/logisticspartner" (HTTP-POST) If an existing LogisticsPartner entity has been updated, the modified entity should be sent to the relative URL: "/LogisticsPartnerService/logisticspartner/{id}" (HTTP-PUT) If an existing LogisticsPartner entity has to be deleted, the following relative URL should be called: "/LogisticsPartnerService/logisticspartner/{id}" (HTTP-DELETE) Add a HTML table to the view with the following LogisticsArrangement columns: - column: EndDate - column: LogisticsPartner - column: StartDate - column: Notes - column: ArrangementType - column: Company The table should have the title "LogisticsArrangements" und the data must be loaded from the server with the following relative URL: "/LogisticsPartnerService/logisticsarrangement/logisticspartner/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint