feat(WEB): 견적 등록 테스트 페이지 IntegratedDetailTemplate 마이그레이션

- test-new 페이지 IntegratedDetailTemplate 적용
- quoteCreateConfig 추가

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
유병철
2026-01-20 19:47:24 +09:00
parent 62ef2b1ff9
commit 4a6149963d
2 changed files with 53 additions and 20 deletions

View File

@@ -27,3 +27,19 @@ export const quoteConfig: DetailConfig = {
backLabel: '목록',
},
};
/**
* 견적 등록 페이지 Config
*/
export const quoteCreateConfig: DetailConfig = {
title: '견적',
description: '새 견적을 등록합니다',
icon: FileText,
basePath: '/sales/quote-management',
fields: [],
actions: {
showBack: true,
showSave: false, // QuoteFooterBar에서 처리
backLabel: '목록',
},
};