feat: [hr] 연차촉진 관리 페이지 추가
- LeavePromotionController: 대상자 목록 조회 + 일괄 통지 발송 - LeaveService: getPromotionCandidates(), sendPromotionNotices() 메서드 추가 - 통지 현황 추적 (미발송/1차 발송/완료) - 일괄 선택 + 결재 문서 자동 생성 + 상신
This commit is contained in:
@@ -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');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user