Overview
Summary
Contact
Donate
Imprint
Prompt for the
JurisdictionView
Please create a React-JS view called "JurisdictionView" for the fields of the Jurisdiction entity. The JurisdictionView must contain the following fields: - name: Country type: Country - name: Level type: STRING - name: Name type: STRING - name: Notes type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing Jurisdiction entity should be loaded from the relative URL: "/JurisdictionService/jurisdiction/{id}" (HTTP-GET) If a new Jurisdiction entity has been created, the new entity should be posted to the relative URL: "/JurisdictionService/jurisdiction" (HTTP-POST) If an existing Jurisdiction entity has been updated, the modified entity should be sent to the relative URL: "/JurisdictionService/jurisdiction/{id}" (HTTP-PUT) If an existing Jurisdiction entity has to be deleted, the following relative URL should be called: "/JurisdictionService/jurisdiction/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Regulation columns: - column: Jurisdiction - column: RegulationType - column: MaxFineAmount - column: Description - column: EffectiveTo - column: Name - column: EffectiveFrom The table should have the title "Regulations" und the data must be loaded from the server with the following relative URL: "/JurisdictionService/regulation/jurisdiction/{id}" Add a HTML table to the view with the following TaxCase columns: - column: Status - column: EndDate - column: Description - column: Currency - column: StartDate - column: AmountAssessed - column: Company - column: Jurisdiction The table should have the title "TaxCases" und the data must be loaded from the server with the following relative URL: "/BookingService/taxcase/jurisdiction/{id}" Add a HTML table to the view with the following Fine columns: - column: Regulation - column: Jurisdiction - column: Currency - column: Amount - column: DecisionDate - column: Description - column: Company The table should have the title "Fines" und the data must be loaded from the server with the following relative URL: "/JurisdictionService/fine/jurisdiction/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint