24 lines
628 B
TypeScript
24 lines
628 B
TypeScript
|
|
'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 = {
|
||
|
|
title: '수입검사 등록',
|
||
|
|
description: '수입검사를 등록합니다',
|
||
|
|
icon: ClipboardCheck,
|
||
|
|
basePath: '/material/receiving-management',
|
||
|
|
fields: [],
|
||
|
|
actions: {
|
||
|
|
showBack: true,
|
||
|
|
showEdit: false,
|
||
|
|
showDelete: false,
|
||
|
|
showSave: true,
|
||
|
|
submitLabel: '등록',
|
||
|
|
},
|
||
|
|
};
|