feat: 다중 도메인 UI 개선 및 컴포넌트 리팩토링
- 게시판, HR, 설정, 차량관리, 건설, 견적 등 전반적 UI 개선 - FormField, TabChip, Select 등 공통 컴포넌트 개선 - 가격배분 edit 페이지 제거 및 상세 페이지 통합 - 체크리스트, 근태, 급여, 권한 관리 등 폼 개선 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -95,7 +95,7 @@ export function QuoteManagementClient({
|
||||
|
||||
// ===== 핸들러 =====
|
||||
const handleView = useCallback((quote: Quote) => {
|
||||
router.push(`/sales/quote-management/${quote.id}`);
|
||||
router.push(`/sales/quote-management/${quote.id}?mode=view`);
|
||||
}, [router]);
|
||||
|
||||
const handleEdit = useCallback((quote: Quote) => {
|
||||
@@ -354,7 +354,7 @@ export function QuoteManagementClient({
|
||||
headerActions: () => (
|
||||
<Button
|
||||
className="ml-auto"
|
||||
onClick={() => router.push('/sales/quote-management/new')}
|
||||
onClick={() => router.push('/sales/quote-management/new?mode=new')}
|
||||
>
|
||||
<FileText className="w-4 h-4 mr-2" />
|
||||
견적 등록
|
||||
|
||||
Reference in New Issue
Block a user