From c52da4e68d9446ee6bc34c656f507df95d8ea1a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Thu, 12 Mar 2026 16:21:10 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[=EC=A0=84=ED=91=9C]=20=EB=B6=84?= =?UTF-8?q?=EA=B0=9C=20=EB=AA=A8=EB=8B=AC=20=ED=85=8C=EC=9D=B4=EB=B8=94=20?= =?UTF-8?q?=EB=A0=88=EC=9D=B4=EC=95=84=EC=9B=83=20=EA=B9=A8=EC=A7=90=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - table-fixed + Tailwind w-[] 클래스가 빌드에 누락되어 칼럼 너비 미적용 - colgroup + inline style로 변경하여 고정 너비 보장 - 계정과목/거래처/적요 td에 overflow-hidden 추가 - 수동전표, 카드분개, 은행분개 모달 3개 모두 동일 적용 --- .../views/finance/journal-entries.blade.php | 87 ++++++++++++------- 1 file changed, 57 insertions(+), 30 deletions(-) diff --git a/resources/views/finance/journal-entries.blade.php b/resources/views/finance/journal-entries.blade.php index e695a65f..fe05971d 100644 --- a/resources/views/finance/journal-entries.blade.php +++ b/resources/views/finance/journal-entries.blade.php @@ -1674,16 +1674,25 @@ className="w-full px-3 py-2 text-sm border border-stone-200 rounded-lg focus:rin

분개 내역

- +
+ + + + + + + + + - - - - - + + + + + - + @@ -1696,7 +1705,7 @@ className={`px-2 py-0.5 rounded text-xs font-medium cursor-pointer hover:opacity {line.dc_type === 'debit' ? '차변' : '대변'} - - -
구분계정과목거래처차변대변구분계정과목거래처차변대변 적요
+ document.getElementById(`m-partner-${index}`)?.focus()} @@ -1706,7 +1715,7 @@ className={`px-2 py-0.5 rounded text-xs font-medium cursor-pointer hover:opacity setLines(updated); }} /> + + updateLine(index, 'description', e.target.value)} onKeyDown={(e) => { if (e.key === 'Tab' && !e.shiftKey) { e.preventDefault(); const next = document.getElementById(`m-account-${index + 1}`); if (next) next.focus(); } }} @@ -2096,16 +2105,25 @@ className="w-full px-3 py-2 text-sm border border-stone-200 rounded-lg focus:rin

분개 내역

- +
+ + + + + + + + + - - - - - + + + + + - + @@ -2118,7 +2136,7 @@ className={`px-2 py-0.5 rounded text-xs font-medium cursor-pointer hover:opacity {line.dc_type === 'debit' ? '차변' : '대변'} - - -
구분계정과목거래처차변대변구분계정과목거래처차변대변 적요
+ document.getElementById(`c-partner-${index}`)?.focus()} @@ -2128,7 +2146,7 @@ className={`px-2 py-0.5 rounded text-xs font-medium cursor-pointer hover:opacity setLines(updated); }} /> + + updateLine(index, 'description', e.target.value)} onKeyDown={(e) => { if (e.key === 'Tab' && !e.shiftKey) { e.preventDefault(); const next = document.getElementById(`c-account-${index + 1}`); if (next) next.focus(); } }} @@ -2503,16 +2521,25 @@ className="w-full px-3 py-2 text-sm border border-stone-200 rounded-lg focus:rin

분개 내역

- +
+ + + + + + + + + - - - - - + + + + + - + @@ -2525,7 +2552,7 @@ className={`px-2 py-0.5 rounded text-xs font-medium cursor-pointer hover:opacity {line.dc_type === 'debit' ? '차변' : '대변'} - - -
구분계정과목거래처차변대변구분계정과목거래처차변대변 적요
+ + + updateLine(index, 'description', e.target.value)} onKeyDown={(e) => { if (e.key === 'Tab' && !e.shiftKey) { e.preventDefault(); const next = document.getElementById(`b-account-${index + 1}`); if (next) next.focus(); } }}