feat: 생산/품질/자재/출고/주문 관리 페이지 구현
- 생산관리: 대시보드, 작업지시, 작업실적, 작업자화면 - 품질관리: 검사관리 (리스트/등록/상세) - 자재관리: 입고관리, 재고현황 - 출고관리: 출하관리 (리스트/등록/상세/수정) - 주문관리: 수주관리, 생산의뢰 - 기존 컴포넌트 개선: CardTransactionInquiry, VendorDetail, QuoteRegistration - IntegratedListTemplateV2 개선 - 공통 컴포넌트 분석 문서 추가 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
17
src/components/orders/index.ts
Normal file
17
src/components/orders/index.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* 수주 관련 컴포넌트
|
||||
*/
|
||||
|
||||
export { OrderRegistration, type OrderFormData } from "./OrderRegistration";
|
||||
export { QuotationSelectDialog, type QuotationForSelect, type QuotationItem } from "./QuotationSelectDialog";
|
||||
export { ItemAddDialog, type OrderItem } from "./ItemAddDialog";
|
||||
|
||||
// 문서 컴포넌트
|
||||
export {
|
||||
ContractDocument,
|
||||
TransactionDocument,
|
||||
PurchaseOrderDocument,
|
||||
OrderDocumentModal,
|
||||
type OrderDocumentType,
|
||||
type OrderDocumentData,
|
||||
} from "./documents";
|
||||
Reference in New Issue
Block a user