Recalculate Month
Select an employee and month to view attendance.
You are in HR/Admin mode. Use the employee selector to view other employees.
| Sun |
Mon |
Tue |
Wed |
Thu |
Fri |
Sat |
Present
Absent
Half Day
Leave
Weekly Off
Holiday
๐ก Request Pending
๐ข Request Approved
๐ด Request Rejected
Present0
Absent0
Half Day0
Leave0
Weekly Off0
Holiday0
| Date |
Status |
In / Out |
Hours |
Shift |
Hours:
Old In:
Old Out:
New In:
New Out:
Attendance Regularization
Request Correction
const statusEl = document.getElementById("att-status-text");
const empBox = document.getElementById("att-main-area");
const empNameEl = document.getElementById("att-emp-name");
const empIdEl = document.getElementById("att-emp-id");
const monthSel = document.getElementById("att-month");
const yearSel = document.getElementById("att-year");
const loadBtn = document.getElementById("att-load-btn");
const calendarBody = document.getElementById("att-calendar-body");
const tbody = document.getElementById("att-tbody");
const detailCard = document.getElementById("att-detail-card");
const summaryCard = document.getElementById("att-summary-container");
const recalcBtn = document.getElementById("att-recalc-btn");
let isAdmin = false;