- Phase 1: 기안함(DocumentCreate) 마이그레이션 - Phase 2: 작업지시(WorkOrderCreate/Edit) 마이그레이션 - Phase 3: 출하(ShipmentCreate/Edit) 마이그레이션 - Phase 4: 사원(EmployeeForm) 마이그레이션 - Phase 5: 게시판(BoardForm) 마이그레이션 - Phase 6: 1:1문의(InquiryForm) 마이그레이션 - Phase 7: 공정(ProcessForm) 마이그레이션 - Phase 8: 수입검사/품질검사(InspectionCreate) 마이그레이션 - DetailActions에 showSave 옵션 추가 - 각 도메인별 config 파일 생성 Co-Authored-By: Claude <noreply@anthropic.com>
37 lines
867 B
TypeScript
37 lines
867 B
TypeScript
'use client';
|
|
|
|
import { Wrench } from 'lucide-react';
|
|
import type { DetailConfig } from '@/components/templates/IntegratedDetailTemplate/types';
|
|
|
|
/**
|
|
* 공정 등록 페이지 Config
|
|
* IntegratedDetailTemplate 마이그레이션 (2025-01-20)
|
|
*/
|
|
export const processCreateConfig: DetailConfig = {
|
|
title: '공정 등록',
|
|
description: '새로운 공정을 등록합니다',
|
|
icon: Wrench,
|
|
basePath: '/master-data/process-management',
|
|
fields: [],
|
|
actions: {
|
|
showBack: true,
|
|
showEdit: false,
|
|
showDelete: false,
|
|
showSave: true,
|
|
submitLabel: '등록',
|
|
},
|
|
};
|
|
|
|
/**
|
|
* 공정 수정 페이지 Config
|
|
*/
|
|
export const processEditConfig: DetailConfig = {
|
|
...processCreateConfig,
|
|
title: '공정 수정',
|
|
description: '공정 정보를 수정합니다',
|
|
actions: {
|
|
...processCreateConfig.actions,
|
|
submitLabel: '저장',
|
|
},
|
|
};
|