feat(WEB): 결재/회계/품목 관리 개선

- ApprovalLineSection/ReferenceSection: 결재선 설정 개선
- DepositManagement/WithdrawalManagement: 입출금 관리 UI 개선
- bills/pricing-management 페이지 수정
- ItemDetailClient: 품목 상세 표시 개선
This commit is contained in:
2025-12-30 17:22:19 +09:00
parent 62bf081adb
commit ec0ad53837
5 changed files with 66 additions and 18 deletions

View File

@@ -86,7 +86,7 @@ function getStorageUrl(path: string | undefined): string | null {
return path;
}
// 상대 경로인 경우
const apiUrl = process.env.NEXT_PUBLIC_API_URL || '';
const apiUrl = process.env.API_URL || '';
return `${apiUrl}/storage/${path}`;
}