Overview
Summary
Contact
Donate
Imprint
Prompt for the
GovernmentMandateView
Please create a React-JS view called "GovernmentMandateView" for the fields of the GovernmentMandate entity. 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