refactor: worker_id → user_id 전체 마이그레이션 (Phase 1-4)

sso_users.user_id를 단일 식별자로 통합. JWT에서 worker_id 제거,
department_id/is_production 추가. 백엔드 15개 모델, 11개 컨트롤러,
4개 서비스, 7개 라우트, 프론트엔드 32+ JS/11+ HTML 변환.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-03-05 13:13:10 +09:00
parent 2197cdb3d5
commit abd7564e6b
90 changed files with 1790 additions and 925 deletions

View File

@@ -155,7 +155,7 @@
try {
const currentUser = getCurrentUser();
if (!currentUser || !currentUser.worker_id) {
if (!currentUser || !currentUser.user_id) {
alert('작업자 정보가 없습니다. 관리자에게 문의하세요.');
return;
}
@@ -179,7 +179,7 @@
const currentUser = getCurrentUser();
try {
const response = await axios.get(`/attendance/vacation-balance/${currentUser.worker_id}`);
const response = await axios.get(`/attendance/vacation-balance/${currentUser.user_id}`);
if (response.data.success) {
renderVacationBalance(response.data.data);
}
@@ -222,7 +222,7 @@
const currentUser = getCurrentUser();
const data = {
worker_id: currentUser.worker_id,
user_id: currentUser.user_id,
vacation_type_id: parseInt(document.getElementById('vacationType').value),
start_date: document.getElementById('startDate').value,
end_date: document.getElementById('endDate').value,
@@ -251,7 +251,7 @@
if (response.data.success) {
// 내 신청만 필터링
const myRequests = response.data.data.filter(req =>
req.requested_by === currentUser.user_id || req.worker_id === currentUser.worker_id
req.requested_by === currentUser.user_id || req.user_id === currentUser.user_id
);
renderVacationRequests(myRequests, 'myRequestsList', true, 'delete');
}