2026-01-20 19:31:07 +09:00
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import { ClipboardCheck } from 'lucide-react';
|
|
|
|
|
import type { DetailConfig } from '@/components/templates/IntegratedDetailTemplate/types';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 수입검사 등록 (IQC) 페이지 Config
|
|
|
|
|
* IntegratedDetailTemplate 마이그레이션 (2025-01-20)
|
|
|
|
|
*/
|
|
|
|
|
export const materialInspectionCreateConfig: DetailConfig = {
|
2026-01-25 12:27:43 +09:00
|
|
|
title: '수입검사',
|
2026-01-20 19:31:07 +09:00
|
|
|
description: '수입검사를 등록합니다',
|
|
|
|
|
icon: ClipboardCheck,
|
|
|
|
|
basePath: '/material/receiving-management',
|
|
|
|
|
fields: [],
|
|
|
|
|
actions: {
|
|
|
|
|
showBack: true,
|
|
|
|
|
showEdit: false,
|
|
|
|
|
showDelete: false,
|
|
|
|
|
showSave: true,
|
|
|
|
|
submitLabel: '등록',
|
|
|
|
|
},
|
|
|
|
|
};
|