Overview
Summary
Contact
Donate
Imprint
Prompt for the
RefundView
Please create a React-JS view called "RefundView" for the fields of the Refund entity. The RefundView must contain the following fields: - name: Amount type: DOUBLE - name: CreatedAt type: DATE - name: Currency type: STRING - name: PaymentTransaction type: PaymentTransaction - name: ReturnRequest type: ReturnRequest The data source for the [PaymentTransaction] select control should be loaded from the relative URL: "/CustomerService/paymenttransaction" (HTTP-GET) The data source for the [ReturnRequest] select control should be loaded from the relative URL: "/ReturnRequestService/returnrequest" (HTTP-GET) An existing Refund entity should be loaded from the relative URL: "/ReturnRequestService/refund/{id}" (HTTP-GET) If a new Refund entity has been created, the new entity should be posted to the relative URL: "/ReturnRequestService/refund" (HTTP-POST) If an existing Refund entity has been updated, the modified entity should be sent to the relative URL: "/ReturnRequestService/refund/{id}" (HTTP-PUT) If an existing Refund entity has to be deleted, the following relative URL should be called: "/ReturnRequestService/refund/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint