Overview
Summary
Contact
Donate
Imprint
Prompt for the
FinancialYearView
Please create a React-JS view called "FinancialYearView" for the fields of the FinancialYear entity. The FinancialYearView must contain the following fields: - name: BalanceSheetMillionUsd type: DOUBLE - name: Company type: Company - name: DeliveriesMillionVehicles type: DOUBLE - name: EmployeeCount type: INT - name: FiscalYear type: INT - name: ProfitMillionUsd type: DOUBLE - name: RevenueMillionUsd type: DOUBLE The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing FinancialYear entity should be loaded from the relative URL: "/BusinessSegmentService/financialyear/{id}" (HTTP-GET) If a new FinancialYear entity has been created, the new entity should be posted to the relative URL: "/BusinessSegmentService/financialyear" (HTTP-POST) If an existing FinancialYear entity has been updated, the modified entity should be sent to the relative URL: "/BusinessSegmentService/financialyear/{id}" (HTTP-PUT) If an existing FinancialYear entity has to be deleted, the following relative URL should be called: "/BusinessSegmentService/financialyear/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint