Files
sam-react-prod/src/components/material/ReceivingManagement/receivingConfig.ts

29 lines
871 B
TypeScript
Raw Normal View History

import { Package } from 'lucide-react';
import type { DetailConfig } from '@/components/templates/IntegratedDetailTemplate/types';
/**
* Config
*
* 참고: config는 /
* renderView에서
*
* :
* - view (edit )
* - (, , )
* - 다이얼로그: 입고증, ,
*/
export const receivingConfig: DetailConfig = {
title: '입고 상세',
description: '입고 정보를 조회합니다',
icon: Package,
basePath: '/material/receiving-management',
fields: [], // renderView 사용으로 필드 정의 불필요
gridColumns: 3,
actions: {
showBack: true,
showDelete: false,
showEdit: false, // 수정 기능 없음
backLabel: '목록',
},
};