Overview
Summary
Contact
Donate
Imprint
Prompt for the
CompanyView
Please create a React-JS view called "CompanyView" for the fields of the Company entity. The CompanyView must contain the following fields: - name: CompanyType type: STRING - name: Description type: STRING - name: FormerName type: STRING - name: FoundedDate type: DATE - name: HeadquartersAddress type: STRING - name: Industry type: STRING - name: Name type: STRING - name: Website type: STRING An existing Company entity should be loaded from the relative URL: "/CompanyService/company/{id}" (HTTP-GET) If a new Company entity has been created, the new entity should be posted to the relative URL: "/CompanyService/company" (HTTP-POST) If an existing Company entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/company/{id}" (HTTP-PUT) If an existing Company entity has to be deleted, the following relative URL should be called: "/CompanyService/company/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Acquisition columns: - column: Notes - column: DealValue - column: CloseDate - column: AcquirerCompany - column: DealCurrency - column: AnnouncementDate - column: PaymentType - column: TargetCompany The table should have the title "Acquisitions" und the data must be loaded from the server with the following relative URL: "/CompanyService/acquisition/acquirercompany/{id}" Add a HTML table to the view with the following Acquisition columns: - column: Notes - column: DealValue - column: CloseDate - column: AcquirerCompany - column: DealCurrency - column: AnnouncementDate - column: PaymentType - column: TargetCompany The table should have the title "Acquisitions" und the data must be loaded from the server with the following relative URL: "/CompanyService/acquisition/targetcompany/{id}" Add a HTML table to the view with the following FinancialStatement columns: - column: Company - column: TotalEquity - column: NetIncome - column: Employees - column: TotalAssets - column: Revenue - column: FiscalYear - column: OperatingIncome The table should have the title "FinancialStatements" und the data must be loaded from the server with the following relative URL: "/PersonService/financialstatement/company/{id}" Add a HTML table to the view with the following StockListing columns: - column: Exchange - column: Company - column: ListingDate - column: Ticker - column: Notes - column: DelistingDate The table should have the title "StockListings" und the data must be loaded from the server with the following relative URL: "/StockListingService/stocklisting/company/{id}" Add a HTML table to the view with the following Service columns: - column: Description - column: Name - column: ServiceType - column: Status - column: LaunchDate - column: Company The table should have the title "Services" und the data must be loaded from the server with the following relative URL: "/CompanyService/service/company/{id}" Add a HTML table to the view with the following CompanyRole columns: - column: RoleType - column: Title - column: StartDate - column: Company - column: EndDate - column: Person The table should have the title "CompanyRoles" und the data must be loaded from the server with the following relative URL: "/PersonService/companyrole/company/{id}" Add a HTML table to the view with the following Lawsuit columns: - column: JurisdictionCountry - column: FiledDate - column: Company - column: CaseName - column: ResolvedDate - column: CaseType - column: Description - column: Outcome - column: SettlementCurrency - column: JurisdictionCity - column: SettlementAmount The table should have the title "Lawsuits" und the data must be loaded from the server with the following relative URL: "/CityService/lawsuit/company/{id}" Add a HTML table to the view with the following Subsidiary columns: - column: Notes - column: ChildCompany - column: ParentCompany - column: StartDate - column: EndDate The table should have the title "Subsidiarys" und the data must be loaded from the server with the following relative URL: "/CompanyService/subsidiary/childcompany/{id}" Add a HTML table to the view with the following Subsidiary columns: - column: Notes - column: ChildCompany - column: ParentCompany - column: StartDate - column: EndDate The table should have the title "Subsidiarys" und the data must be loaded from the server with the following relative URL: "/CompanyService/subsidiary/parentcompany/{id}" Add a HTML table to the view with the following RegulatoryAction columns: - column: City - column: Country - column: StartDate - column: AuthorityName - column: SourceReference - column: Company - column: ActionType - column: Description - column: EndDate The table should have the title "RegulatoryActions" und the data must be loaded from the server with the following relative URL: "/CompanyService/regulatoryaction/company/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint