Overview
Summary
Contact
Donate
Imprint
Prompt for the
SanctionListEntryView
Please create a React-JS view called "SanctionListEntryView" for the fields of the SanctionListEntry entity. The SanctionListEntryView must contain the following fields: - name: Active type: BOOL - name: Country type: Country - name: DateOfBirth type: DATE - name: ExternalReference type: STRING - name: FullName type: STRING - name: ListName type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing SanctionListEntry entity should be loaded from the relative URL: "/CountryService/sanctionlistentry/{id}" (HTTP-GET) If a new SanctionListEntry entity has been created, the new entity should be posted to the relative URL: "/CountryService/sanctionlistentry" (HTTP-POST) If an existing SanctionListEntry entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/sanctionlistentry/{id}" (HTTP-PUT) If an existing SanctionListEntry entity has to be deleted, the following relative URL should be called: "/CountryService/sanctionlistentry/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ComplianceCheck columns: - column: Transaction - column: CheckType - column: PerformedAt - column: Details - column: UserAccount - column: Status - column: SanctionListEntry - column: Result The table should have the title "ComplianceChecks" und the data must be loaded from the server with the following relative URL: "/UserAccountService/compliancecheck/sanctionlistentry/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint