Overview
Summary
Contact
Donate
Imprint
Prompt for the
FinancialProductView
Please create a React-JS view called "FinancialProductView" for the fields of the FinancialProduct entity. The FinancialProductView must contain the following fields: - name: AssetClass type: AssetClass - name: Currency type: STRING - name: Description type: STRING - name: Isin type: STRING - name: Name type: STRING - name: ProductType type: STRING - name: Ticker type: STRING The data source for the [AssetClass] select control should be loaded from the relative URL: "/FinancialProductService/assetclass" (HTTP-GET) An existing FinancialProduct entity should be loaded from the relative URL: "/FinancialProductService/financialproduct/{id}" (HTTP-GET) If a new FinancialProduct entity has been created, the new entity should be posted to the relative URL: "/FinancialProductService/financialproduct" (HTTP-POST) If an existing FinancialProduct entity has been updated, the modified entity should be sent to the relative URL: "/FinancialProductService/financialproduct/{id}" (HTTP-PUT) If an existing FinancialProduct entity has to be deleted, the following relative URL should be called: "/FinancialProductService/financialproduct/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PortfolioHolding columns: - column: Quantity - column: Portfolio - column: FinancialProduct - column: MarketValue - column: ValuationDate The table should have the title "PortfolioHoldings" und the data must be loaded from the server with the following relative URL: "/OrganizationService/portfolioholding/financialproduct/{id}" Add a HTML table to the view with the following MandateInstrument columns: - column: NotionalValue - column: GovernmentMandate - column: Currency - column: FinancialProduct - column: Description The table should have the title "MandateInstruments" und the data must be loaded from the server with the following relative URL: "/FinancialProductService/mandateinstrument/financialproduct/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint