fix: 출근체크/근무현황 페이지 버그 수정

- workers API 기본 limit 10 → 100 변경 (작업자 누락 문제 해결)
- 작업자 필터 조건 수정 (status='active' + employment_status 체크)
- 근태 기록 저장 시 컬럼명 불일치 수정 (attendance_type_id)
- 근무현황 페이지에 저장 상태 표시 추가 (✓저장됨)
- 디버그 로그 제거

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-02-04 20:58:30 +09:00
parent b8ccde7f17
commit 7c38c555f5
10 changed files with 43 additions and 271 deletions

View File

@@ -15,7 +15,7 @@ window.VacationCommon = {
*/
async function loadWorkers() {
try {
const response = await axios.get('/workers');
const response = await axios.get('/workers?limit=100');
if (response.data.success) {
window.VacationCommon.workers = response.data.data.filter(w => w.employment_status === 'employed');
return window.VacationCommon.workers;