Overview
Summary
Contact
Donate
Imprint
Prompt for the
RoyaltyLineView
Please create a React-JS view called "RoyaltyLineView" for the fields of the RoyaltyLine entity. The RoyaltyLineView must contain the following fields: - name: AmountEur type: DOUBLE - name: AmountUsd type: DOUBLE - name: RoyaltyRecipient type: RoyaltyRecipient - name: RoyaltyStatement type: RoyaltyStatement - name: SharePercent type: DOUBLE - name: StreamsCount type: LONG - name: Track type: Track The data source for the [RoyaltyStatement] select control should be loaded from the relative URL: "/MarketRegionService/royaltystatement" (HTTP-GET) The data source for the [Track] select control should be loaded from the relative URL: "/TrackService/track" (HTTP-GET) The data source for the [RoyaltyRecipient] select control should be loaded from the relative URL: "/CountryService/royaltyrecipient" (HTTP-GET) An existing RoyaltyLine entity should be loaded from the relative URL: "/MarketRegionService/royaltyline/{id}" (HTTP-GET) If a new RoyaltyLine entity has been created, the new entity should be posted to the relative URL: "/MarketRegionService/royaltyline" (HTTP-POST) If an existing RoyaltyLine entity has been updated, the modified entity should be sent to the relative URL: "/MarketRegionService/royaltyline/{id}" (HTTP-PUT) If an existing RoyaltyLine entity has to be deleted, the following relative URL should be called: "/MarketRegionService/royaltyline/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint