Merge remote-tracking branch 'origin/master'

This commit is contained in:
2026-02-10 10:27:21 +09:00
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;