feat: [hr] 연차촉진 관리 페이지 추가

- LeavePromotionController: 대상자 목록 조회 + 일괄 통지 발송
- LeaveService: getPromotionCandidates(), sendPromotionNotices() 메서드 추가
- 통지 현황 추적 (미발송/1차 발송/완료)
- 일괄 선택 + 결재 문서 자동 생성 + 상신
This commit is contained in:
김보곤
2026-03-07 00:46:10 +09:00
parent b708f473d1
commit d9be4e2400
4 changed files with 643 additions and 0 deletions

View File

@@ -1056,6 +1056,12 @@
Route::get('/help', [\App\Http\Controllers\HR\LeaveController::class, 'helpGuide'])->name('help');
});
// 연차촉진 관리
Route::prefix('leave-promotions')->name('leave-promotions.')->group(function () {
Route::get('/', [\App\Http\Controllers\HR\LeavePromotionController::class, 'index'])->name('index');
Route::post('/', [\App\Http\Controllers\HR\LeavePromotionController::class, 'store'])->name('store');
});
// 근태관리 통합 (신규)
Route::get('/attendance', [\App\Http\Controllers\HR\AttendanceIntegratedController::class, 'index'])->name('attendance.index');