feat: [hr] 사업소득자 임금대장 입력 기능 구현

- BusinessIncomePayment 모델 (소득세3%/지방소득세0.3% 자동계산)
- BusinessIncomePaymentService (일괄저장/통계/CSV내보내기)
- 웹/API 컨트롤러 (ALLOWED_PAYROLL_USERS 접근 제한)
- 스프레드시트 UI (인라인 편집, 실시간 세금 계산)
- HTMX 연월 변경 갱신, CSV 내보내기
This commit is contained in:
김보곤
2026-02-27 20:22:07 +09:00
parent cd61dc8366
commit 30973d1772
9 changed files with 992 additions and 0 deletions

View File

@@ -924,6 +924,11 @@
Route::prefix('payrolls')->name('payrolls.')->group(function () {
Route::get('/', [\App\Http\Controllers\HR\PayrollController::class, 'index'])->name('index');
});
// 사업소득자 임금대장
Route::prefix('business-income-payments')->name('business-income-payments.')->group(function () {
Route::get('/', [\App\Http\Controllers\HR\BusinessIncomePaymentController::class, 'index'])->name('index');
});
});
/*