17 lines
487 B
TypeScript
17 lines
487 B
TypeScript
|
|
/**
|
||
|
|
* 수주 관련 컴포넌트
|
||
|
|
*/
|
||
|
|
|
||
|
|
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";
|