From 982394580708cc4f48f573151e3057e79f55249a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Sat, 28 Feb 2026 20:31:15 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20[payroll]=20=EC=A0=84=ED=91=9C=20?= =?UTF-8?q?=EC=83=9D=EC=84=B1=20=EB=8F=84=EC=9B=80=EB=A7=90=20=EB=AA=A8?= =?UTF-8?q?=EB=8B=AC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 전표 생성 버튼 옆에 i 도움말 아이콘 버튼 추가 - 분개 구조, 전표일자/번호, 주의사항, 수정/삭제 안내 포함 --- resources/views/hr/payrolls/index.blade.php | 190 ++++++++++++++++++++ 1 file changed, 190 insertions(+) diff --git a/resources/views/hr/payrolls/index.blade.php b/resources/views/hr/payrolls/index.blade.php index 631d4d4e..18643dff 100644 --- a/resources/views/hr/payrolls/index.blade.php +++ b/resources/views/hr/payrolls/index.blade.php @@ -64,6 +64,12 @@ class="inline-flex items-center gap-2 px-4 py-2 bg-indigo-600 hover:bg-indigo-70 전표 생성 + @@ -615,6 +621,182 @@ class="px-5 py-2 text-sm text-gray-700 bg-gray-100 hover:bg-gray-200 rounded-lg + +{{-- 전표 생성 도움말 모달 --}} + @endsection @push('scripts') @@ -627,6 +809,14 @@ function closePayrollHelpModal() { document.getElementById('payrollHelpModal').classList.add('hidden'); } + // ===== 전표 생성 도움말 모달 ===== + function openJournalHelpModal() { + document.getElementById('journalHelpModal').classList.remove('hidden'); + } + function closeJournalHelpModal() { + document.getElementById('journalHelpModal').classList.add('hidden'); + } + // ===== 현재 탭 상태 ===== let currentTab = 'list'; const tabLoaded = { list: true, settings: true };