feat(WEB): 공정관리 상세 체크리스트 연동 및 리팩토링 문서 업데이트

- ProcessDetail: 체크리스트 연동 UI 추가
- Process 타입 체크리스트 필드 확장
- 리팩토링 로드맵 및 Phase1 체크리스트 진행상황 업데이트
- claudedocs 인덱스 정리

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
유병철
2026-02-09 21:49:45 +09:00
parent 14b84cc08d
commit 0643d56194
6 changed files with 126 additions and 63 deletions

View File

@@ -70,16 +70,16 @@ export interface Process {
// 설명
note?: string;
// 담당자 (신규 필드 - 백엔드 미준비)
// 담당자
manager?: string;
// 생산일자 사용여부 (신규 필드 - 백엔드 미준비)
// 생산일자 사용여부
useProductionDate?: boolean;
// 구분 (신규 필드 - 공정명에 따라 옵션 변경)
// 구분 (공정명에 따라 옵션 변경)
processCategory?: string;
// 단계 목록 (신규 필드 - 백엔드 미준비)
// 단계 목록
steps?: ProcessStep[];
// 상태
@@ -95,6 +95,9 @@ export interface ProcessFormData {
processName: string;
processType: ProcessType;
department: string;
manager?: string;
processCategory?: string;
useProductionDate?: boolean;
workLogTemplate?: string;
classificationRules: ClassificationRuleInput[];
requiredWorkers: number;