feat: 단가관리 페이지 마이그레이션 및 HR 관리 기능 추가

## 단가관리 (Pricing Management)
- 단가 목록 페이지 (IntegratedListTemplateV2 공통 템플릿 적용)
- 단가 등록/수정 폼 (원가/마진 자동 계산)
- 이력 조회, 수정 이력, 최종 확정 다이얼로그
- 판매관리 > 단가관리 네비게이션 메뉴 추가

## HR 관리 (Human Resources)
- 사원관리 (목록, 등록, 수정, 상세, CSV 업로드)
- 부서관리 (트리 구조)
- 근태관리 (기본 구조)

## 품목관리 개선
- Radix UI Select controlled mode 버그 수정 (key prop 적용)
- DynamicItemForm 파일 업로드 지원
- 수정 페이지 데이터 로딩 개선

## 문서화
- 단가관리 마이그레이션 체크리스트
- HR 관리 구현 체크리스트
- Radix UI Select 버그 수정 가이드

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
byeongcheolryu
2025-12-06 11:36:38 +09:00
parent 751e65f59b
commit 48dbba0e5f
59 changed files with 9888 additions and 101 deletions

View File

@@ -137,7 +137,9 @@ export function useItemList(): UseItemListResult {
partType: item.part_type as string | undefined,
unit: (item.unit ?? '') as string,
specification: (item.specification ?? '') as string,
isActive: item.is_active !== undefined ? Boolean(item.is_active) : (item.deleted_at === null),
// is_active가 null/undefined면 deleted_at 기준으로 판단 (삭제 안됐으면 활성)
// deleted_at이 없거나 null이면 활성, 값이 있으면 비활성
isActive: item.is_active != null ? Boolean(item.is_active) : !item.deleted_at,
category1: (item.category1 ?? '') as string,
category2: (item.category2 ?? '') as string,
category3: (item.category3 ?? '') as string,