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

# Tax Distribution

> View and manage tax form distributions to recipients in the Finance & Revenue core.

The Tax Distribution page (`/fa/tax/distributions`) lists tax form distribution records and their delivery status.

## Overview

The Tax Distribution page shows a `DataTable` of distribution records from `useTaxDistributionsList` backed by the `fa_tax_distributions` table. Observed columns include: Form Type (`document_type`), Recipient (`recipient_name`), Distribution Method, Status, and Sent Date.

Clicking a row in the Form Type column navigates to `/fa/tax/distributions/:id`, which does not have a defined route in the current router — this may be a planned route.

Requires `fa.tax.distribute` permission as defined in the route guard.

## Who it's for

Requires permission: `fa.tax.distribute`.

## Before you start

* Tax forms (1099s or W-2s) must exist and be associated with tax years.
* You need `fa.tax.distribute` to access this page.

## Steps

**View tax distributions**

1. Navigate to `/fa/tax/distributions`.
2. Review the distributions table.

**Review a distribution record**

1. Click the Form Type link in a row.

## Key concepts

* **Distribution**: A `fa_tax_distributions` row representing the delivery of a tax form to a recipient.
* **Status**: Observed as `pending` when not yet sent.
* **Distribution method**: Observed default is `mail`.

## 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/TaxDistributionPage.tsx
  * src/cores/fa/hooks/useTaxDistributions.ts
  * src/cores/fa/types/tax.ts
</Accordion>
