Overview
Summary
Contact
Donate
Imprint
Prompt for the
FeeView
Please create a React-JS view called "FeeView" for the fields of the Fee entity. The FeeView must contain the following fields: - name: Amount type: DOUBLE - name: Currency type: Currency - name: Description type: STRING - name: FeeSchedule type: FeeSchedule - name: Type type: STRING The data source for the [Currency] select control should be loaded from the relative URL: "/CurrencyService/currency" (HTTP-GET) The data source for the [FeeSchedule] select control should be loaded from the relative URL: "/CurrencyService/feeschedule" (HTTP-GET) An existing Fee entity should be loaded from the relative URL: "/CurrencyService/fee/{id}" (HTTP-GET) If a new Fee entity has been created, the new entity should be posted to the relative URL: "/CurrencyService/fee" (HTTP-POST) If an existing Fee entity has been updated, the modified entity should be sent to the relative URL: "/CurrencyService/fee/{id}" (HTTP-PUT) If an existing Fee entity has to be deleted, the following relative URL should be called: "/CurrencyService/fee/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Transaction columns: - column: CompletedAt - column: SenderUserAccount - column: ReceiverUserAccount - column: CreatedAt - column: Merchant - column: Status - column: Type - column: NetAmount - column: FundingSource - column: Amount - column: FeeAmount - column: ExternalReference - column: Currency The table should have the title "Transactions" und the data must be loaded from the server with the following relative URL: "/TransactionService/transaction/feeamount/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint