- CEO 대시보드: 섹션별 API 연동 강화 (매출/매입/생산 실데이터 표시) - DashboardSettingsDialog 드래그 정렬 및 설정 UX 개선 - dashboard transformers 모듈 분리 (파일 분할) - DocumentTable/DocumentWrapper 공통 문서 컴포넌트 추출 - LineItemsTable organisms 컴포넌트 추가 - PurchaseOrderDocument/InspectionRequestDocument 문서 컴포넌트 리팩토링 - PermissionContext → permissionStore(Zustand) 전환 - useUIStore, stores/utils/userStorage 추가 - favoritesStore/useTableColumnStore 사용자별 저장 지원 - DepositDetail/WithdrawalDetail 삭제 (통합) - PurchaseDetail/SalesDetail 간소화 - amount.ts/formatters.ts 유틸 확장 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
1.2 KiB
TypeScript
26 lines
1.2 KiB
TypeScript
export { TodayIssueSection } from './TodayIssueSection';
|
|
export { StatusBoardSection } from './StatusBoardSection';
|
|
export { DailyReportSection } from './DailyReportSection';
|
|
export { MonthlyExpenseSection } from './MonthlyExpenseSection';
|
|
export { CardManagementSection } from './CardManagementSection';
|
|
export { EntertainmentSection } from './EntertainmentSection';
|
|
export { WelfareSection } from './WelfareSection';
|
|
export { ReceivableSection } from './ReceivableSection';
|
|
export { DebtCollectionSection } from './DebtCollectionSection';
|
|
export { VatSection } from './VatSection';
|
|
export { CalendarSection } from './CalendarSection';
|
|
|
|
// 신규 섹션
|
|
export { SalesStatusSection } from './SalesStatusSection';
|
|
export { PurchaseStatusSection } from './PurchaseStatusSection';
|
|
export { DailyProductionSection, ShipmentSection } from './DailyProductionSection';
|
|
export { UnshippedSection } from './UnshippedSection';
|
|
export { ConstructionSection } from './ConstructionSection';
|
|
export { DailyAttendanceSection } from './DailyAttendanceSection';
|
|
|
|
// Enhanced Sections (디자인 강화 버전)
|
|
export {
|
|
EnhancedDailyReportSection,
|
|
EnhancedStatusBoardSection,
|
|
EnhancedMonthlyExpenseSection,
|
|
} from './EnhancedSections'; |