The Timesheet Details page shows an employee’s individual timesheet with a data table of time entries, exception indicators, and an export option. It is served 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.
/hr/my-timesheets/:id.
Overview
The page usesuseTimesheetDetail(id) with the :id path parameter and useEntityBreadcrumb for breadcrumb display. A DataTable renders TimesheetEntry rows with columns for date, clock-in, clock-out, break duration, hours worked, location indicator, and exception badge. An edit icon and location pin icon appear on entries where applicable. A download button exports timesheet data.
Permission: HR_PERMISSIONS.TIMESHEETS_VIEW (hr.timesheets.view) — RequirePermission guard in hr.tsx.
Exception types displayed:
missed_punch— Missing clock in or clock outlate— Clocked in more than 15 minutes after shift startearly— Clocked out more than 15 minutes before shift endunapproved_ot— Worked hours exceed approved limit
Who it’s for
Permission:hr.timesheets.view — required by RequirePermission guard in hr.tsx.
Before you start
- Navigate from the My Timesheets list at
/hr/my-timesheets.
Steps
- Navigate to HR > My Timesheets and click a timesheet row, or go directly to
/hr/my-timesheets/:id. - Review the time entries table: date, clock-in/out, break duration, total hours.
- Check the exception badge column for any flagged entries.
- Click the location icon on an entry to view associated geolocation data.
- Use the Download button to export the timesheet.
Key concepts
| Term | Meaning |
|---|---|
| TimesheetEntry | A single work-day record linking clock-in and clock-out punches with computed hours. |
| was_edited | Flag on a punch record indicating it was manually corrected after the original punch. |
| Exception | A time compliance flag (missed_punch, late, early, unapproved_ot). |
Related
Human Resources
Human Resources 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/hr.tsx
- src/cores/hr/pages/TimesheetDetail.tsx
- src/cores/hr/hooks/time/useTimesheetDetail.ts