Overview
Summary
Contact
Donate
Imprint
Prompt for the
DisputeView
Please create a React-JS view called "DisputeView" for the fields of the Dispute entity. The DisputeView must contain the following fields: - name: BuyerUserAccount type: LONG - name: ClosedAt type: DATE - name: OpenedAt type: DATE - name: OpenedByUserAccount type: LONG - name: Reason type: STRING - name: Resolution type: STRING - name: SellerUserAccount type: LONG - name: Status type: STRING - name: Transaction type: Transaction - name: Type type: STRING The data source for the [Transaction] select control should be loaded from the relative URL: "/TransactionService/transaction" (HTTP-GET) An existing Dispute entity should be loaded from the relative URL: "/FundingSourceService/dispute/{id}" (HTTP-GET) If a new Dispute entity has been created, the new entity should be posted to the relative URL: "/FundingSourceService/dispute" (HTTP-POST) If an existing Dispute entity has been updated, the modified entity should be sent to the relative URL: "/FundingSourceService/dispute/{id}" (HTTP-PUT) If an existing Dispute entity has to be deleted, the following relative URL should be called: "/FundingSourceService/dispute/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SupportCase columns: - column: Description - column: Status - column: Subject - column: Channel - column: Dispute - column: UserAccount - column: ClosedAt - column: Transaction - column: OpenedAt - column: SecurityIncident The table should have the title "SupportCases" und the data must be loaded from the server with the following relative URL: "/UserAccountService/supportcase/dispute/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint