Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt

Use this file to discover all available pages before exploring further.

Edit Project provides a form for updating an existing project record’s details within the project accounting module. Route: /fa/projects/:id/edit.

Overview

The Edit Project page is accessible at /fa/projects/:id/edit and requires permission fa.projects.edit. The component (ProjectEditPage) fetches the project via useProject(id, organizationId) and renders ProjectForm pre-populated with current values. On submit, useUpdateProject is called with the updated data. On success, the page navigates to /fa/projects/:id. On cancel, it also returns to the project detail. The breadcrumb displays Edit <project_name>.

Who it’s for

Requires permission fa.projects.edit.

Before you start

  • You must have fa.projects.edit permission.
  • The project record must exist; navigate to it via /fa/projects.

Steps

  1. Navigate to Finance → Projects (/fa/projects) and open the project record.
  2. Click Edit to go to /fa/projects/:id/edit.
  3. Update the relevant project fields in ProjectForm.
  4. Click Save to submit via useUpdateProject.
  5. Click Cancel to return to the project detail without saving.
  6. On success, the page navigates to the project detail.

Key concepts

ConceptDescription
ProjectFormShared form component for project create and edit
useProjectHook fetching the existing project, scoped to organizationId
useUpdateProjectMutation hook persisting project edits
ProjectInsertTypeScript type defining the project data shape

Finance & Revenue

Finance & Revenue core overview.

Governance & parity

This page documents shipped product behavior. It is not medical, legal, or billing advice. Verify against your organization’s policies and applicable regulations before using it for clinical, compliance, or billing decisions. Protected health information (PHI) shown in the product is governed by your tenant’s access controls and is never exposed in this documentation.
  • src/routes/fa.tsx
  • src/cores/fa/pages/ProjectEditPage.tsx