The New Asset page creates a fixed asset record in the Finance & Revenue core. It is accessible at routeDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/fa/fixed-assets/new.
Overview
The page rendersFixedAssetForm inside a card. On submit, useCreateFixedAsset is called with the following key mappings from form values:
asset_tag: auto-generated by database trigger (passed as empty string)book_value: initialized topurchase_costaccumulated_depreciation: initialized to0status: set to"active"useful_life_months: only set whendepreciation_method !== 'none'
/fa/fixed-assets/:id (the new asset’s detail page).
Permission gate: fa.assets.create (route level)
Primary mutation: useCreateFixedAsset
Who it’s for
Permission required:fa.assets.create
Before you start
- Have vendor and site information ready if applicable.
- Identify the GL accounts: asset account, depreciation expense account, accumulated depreciation account, and gain/loss account.
- Know the purchase date, cost, depreciation method, and useful life.
Steps
- Navigate to
/fa/fixed-assets/new. - Complete the
FixedAssetForm:- Asset Information: Name, description, serial number, asset category, purchase date, purchase cost
- Location: Vendor, purchase order, site
- Depreciation: Method, useful life (months), salvage value
- GL Accounts: Asset account, depreciation expense, accumulated depreciation, gain/loss
- Notes: Optional free-text
- Click the submit button. On success, you are redirected to the new asset detail page.
Key concepts
- Asset tag: Auto-generated by the database — not entered by the user.
- Depreciation method
none: Skipsuseful_life_monthsrequirement.
Related
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.
Documentation sources
Documentation sources
- src/routes/fa.tsx
- src/cores/fa/pages/FixedAssetCreatePage.tsx
- src/cores/fa/hooks/useFixedAssets.ts
- src/cores/fa/components/FixedAssetForm.tsx