- 수입검사: InspectionCreate/Detail/List 대폭 개선, OrderSelectModal/문서 컴포넌트 신규 추가 - 수입검사: actions/types/mockData/inspectionConfig 전면 리팩토링 - QMS: InspectionModalV2/ImportInspectionDocument 개선 - 캘린더: DayTimeView 신규 추가, CalendarHeader/ScheduleCalendar/utils 확장 - 출고: ShipmentDetail/List/actions 개선, ShipmentOrderDocument/ShippingSlip 수정 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
44 lines
1017 B
TypeScript
44 lines
1017 B
TypeScript
'use client';
|
|
|
|
import { ClipboardCheck } from 'lucide-react';
|
|
import type { DetailConfig } from '@/components/templates/IntegratedDetailTemplate/types';
|
|
|
|
/**
|
|
* 제품검사 등록 페이지 Config
|
|
*/
|
|
export const qualityInspectionCreateConfig: DetailConfig = {
|
|
title: '제품검사',
|
|
description: '제품검사를 등록합니다',
|
|
icon: ClipboardCheck,
|
|
basePath: '/quality/inspections',
|
|
fields: [],
|
|
actions: {
|
|
showBack: true,
|
|
showEdit: false,
|
|
showDelete: false,
|
|
showSave: true,
|
|
submitLabel: '등록',
|
|
},
|
|
};
|
|
|
|
/**
|
|
* 제품검사 상세 페이지 Config
|
|
*/
|
|
export const inspectionConfig: DetailConfig = {
|
|
title: '제품검사 상세',
|
|
description: '제품검사 상세를 관리합니다',
|
|
icon: ClipboardCheck,
|
|
basePath: '/quality/inspections',
|
|
fields: [],
|
|
gridColumns: 2,
|
|
actions: {
|
|
showBack: true,
|
|
showDelete: false,
|
|
showEdit: true,
|
|
backLabel: '목록',
|
|
editLabel: '수정',
|
|
submitLabel: '수정 완료',
|
|
cancelLabel: '취소',
|
|
},
|
|
};
|