The W-2 Form Details page (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.
/fa/tax/forms/w2/:id) shows the complete W-2 wage statement for a single employee and supports distribution and correction actions.
Overview
The W-2 Form Details page loads a form viauseW2FormDetail (keyed by :id and org) backed by the fa_w2_forms table. The breadcrumb label is derived from employee_name.
The page shows:
- A
W2BoxBreakdowncomponent rendering key-value pairs from thebox_amountsJSON field (filtering out null/zero/empty values). - A distribution action via
CreateDistributionDialog(gated byPermissionGate). - A Create W-2C (corrected W-2) button that calls
useCreateW2Formwith a corrected form payload.
Who it’s for
Requires permission:fa.tax.view.
Before you start
- The W-2 record must exist. Navigate from
/fa/tax/forms/w2. - You need
fa.tax.viewto access this page.
Steps
View W-2 details- Navigate to
/fa/tax/forms/w2/:id(or click a form from the W-2 Forms list). - Review the employee wage information and box breakdown.
- Click the distribution action (requires appropriate permission via
PermissionGate). - Complete the
CreateDistributionDialog.
- Click Create W-2C.
- A corrected form is created via
useCreateW2Form.
Key concepts
- Box amounts: JSON field (
box_amounts) onfa_w2_formscontaining per-box wage/tax values; rendered byW2BoxBreakdown. - W-2C: A corrected W-2 form; created by calling
useCreateW2Formwith the sametax_year_idand corrected flag.
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/W2FormDetailPage.tsx
- src/cores/fa/hooks/useW2Forms.ts
- src/cores/fa/components/CreateDistributionDialog.tsx