> ## 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.

# Transfer Asset

> Fixed asset transfer is performed via a dialog within the Asset Detail page in the Finance & Revenue core.

The route `/fa/fixed-assets/:id/transfer` has no matching entry in the application router. Asset transfer functionality is accessed via the `AssetTransferDialog` launched from the Fixed Asset Detail page (`/fa/fixed-assets/:id`).

## Overview

No standalone route for `/fa/fixed-assets/:id/transfer` exists in `src/routes/fa.tsx`. The `AssetTransferDialog` component is rendered within `FixedAssetDetailPage` and launched via the **Transfer** button on that page.

The `FixedAssetDetailPage` (at `/fa/fixed-assets/:id`) uses `useAssetTransferHistory` to load the transfer history for an asset and displays it in a dedicated tab.

## Who it's for

The Fixed Asset Detail page uses permission: `fa.assets.view`. Transfer actions may require additional permissions — not determinable from the detail page code alone.

## Before you start

* Navigate to the Fixed Asset Detail page at `/fa/fixed-assets/:id`.
* The asset must exist and be in an appropriate status for transfer.

## Steps

**Transfer an asset**

1. Navigate to `/fa/fixed-assets/:id` (requires `fa.assets.view`).
2. Click **Transfer** (the `AssetTransferDialog` opens).
3. Complete the transfer form.
4. Confirm.

**View transfer history**

1. On the Fixed Asset Detail page, select the transfer history tab.
2. Review past transfers from `useAssetTransferHistory`.

## Related

<Columns cols={2}>
  <Card title="Finance & Revenue" icon="building-columns" href="/fa/overview">
    Finance & Revenue core overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" href="/governance/index" />
</Columns>

<Note>
  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.
</Note>

<Accordion title="Documentation sources">
  * src/routes/fa.tsx
  * src/cores/fa/pages/FixedAssetDetailPage.tsx
  * src/cores/fa/hooks/useAssetTransfers.ts
  * src/cores/fa/components/AssetTransferDialog.tsx
</Accordion>
