Overview
Summary
Contact
Donate
Imprint
Prompt for the
GovernmentMandateApp
Please create a React-JS application for the GovernmentMandateModule. The application has to offer the following views for the user interface: 1. CrisisView 2. GovernmentMandateView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The CrisisView must contain the following fields: - name: Description type: STRING - name: EndDate type: DATE - name: Name type: STRING - name: StartDate type: DATE An existing Crisis entity should be loaded from the relative URL: "/GovernmentMandateService/crisis/{id}" (HTTP-GET) If a new Crisis entity has been created, the new entity should be posted to the relative URL: "/GovernmentMandateService/crisis" (HTTP-POST) If an existing Crisis entity has been updated, the modified entity should be sent to the relative URL: "/GovernmentMandateService/crisis/{id}" (HTTP-PUT) If an existing Crisis entity has to be deleted, the following relative URL should be called: "/GovernmentMandateService/crisis/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GovernmentMandate columns: - column: AladdinSystem - column: ServiceProviderOrganization - column: ClientOrganization - column: StartDate - column: Name - column: EndDate - column: Crisis - column: MandateValue - column: Currency - column: Description The table should have the title "GovernmentMandates" und the data must be loaded from the server with the following relative URL: "/GovernmentMandateService/governmentmandate/crisis/{id}" 2. The GovernmentMandateView must contain the following fields: - name: AladdinSystem type: AladdinSystem - name: ClientOrganization type: Organization - name: Crisis type: Crisis - name: Currency type: STRING - name: Description type: STRING - name: EndDate type: DATE - name: MandateValue type: STRING - name: Name type: STRING - name: ServiceProviderOrganization type: Organization - name: StartDate type: DATE The data source for the [ServiceProviderOrganization] select control should be loaded from the relative URL: "/OrganizationService/organization" (HTTP-GET) The data source for the [ClientOrganization] select control should be loaded from the relative URL: "/OrganizationService/organization" (HTTP-GET) The data source for the [AladdinSystem] select control should be loaded from the relative URL: "/AladdinSystemService/aladdinsystem" (HTTP-GET) The data source for the [Crisis] select control should be loaded from the relative URL: "/GovernmentMandateService/crisis" (HTTP-GET) An existing GovernmentMandate entity should be loaded from the relative URL: "/GovernmentMandateService/governmentmandate/{id}" (HTTP-GET) If a new GovernmentMandate entity has been created, the new entity should be posted to the relative URL: "/GovernmentMandateService/governmentmandate" (HTTP-POST) If an existing GovernmentMandate entity has been updated, the modified entity should be sent to the relative URL: "/GovernmentMandateService/governmentmandate/{id}" (HTTP-PUT) If an existing GovernmentMandate entity has to be deleted, the following relative URL should be called: "/GovernmentMandateService/governmentmandate/{id}" (HTTP-DELETE) Add a HTML table to the view with the following MandateInstrument columns: - column: NotionalValue - column: GovernmentMandate - column: Currency - column: FinancialProduct - column: Description The table should have the title "MandateInstruments" und the data must be loaded from the server with the following relative URL: "/FinancialProductService/mandateinstrument/governmentmandate/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint