2025-12-23 21:13:07 +09:00
|
|
|
/**
|
2026-01-08 17:29:06 +09:00
|
|
|
* 수주 관련 컴포넌트 및 API 함수
|
2025-12-23 21:13:07 +09:00
|
|
|
*/
|
|
|
|
|
|
2026-01-08 17:29:06 +09:00
|
|
|
// API Actions
|
|
|
|
|
export {
|
|
|
|
|
getOrders,
|
|
|
|
|
getOrderById,
|
|
|
|
|
createOrder,
|
|
|
|
|
updateOrder,
|
|
|
|
|
deleteOrder,
|
|
|
|
|
deleteOrders,
|
|
|
|
|
updateOrderStatus,
|
|
|
|
|
getOrderStats,
|
2026-01-28 21:15:25 +09:00
|
|
|
createProductionOrder,
|
2026-01-16 21:59:06 +09:00
|
|
|
revertProductionOrder,
|
|
|
|
|
revertOrderConfirmation,
|
2026-01-27 17:41:16 +09:00
|
|
|
getQuoteByIdForSelect,
|
2026-01-08 17:29:06 +09:00
|
|
|
type Order,
|
|
|
|
|
type OrderItem as OrderItemApi,
|
|
|
|
|
type OrderFormData as OrderApiFormData,
|
|
|
|
|
type OrderItemFormData,
|
|
|
|
|
type OrderStats,
|
2026-02-06 20:22:31 +09:00
|
|
|
type OrderNode,
|
2026-01-08 17:29:06 +09:00
|
|
|
type OrderStatus,
|
2026-01-27 17:41:16 +09:00
|
|
|
type QuotationForSelect,
|
|
|
|
|
type QuotationItem,
|
2026-01-08 17:29:06 +09:00
|
|
|
} from "./actions";
|
|
|
|
|
|
|
|
|
|
// Components
|
2025-12-23 21:13:07 +09:00
|
|
|
export { OrderRegistration, type OrderFormData } from "./OrderRegistration";
|
2026-01-27 17:41:16 +09:00
|
|
|
export { QuotationSelectDialog } from "./QuotationSelectDialog";
|
2025-12-23 21:13:07 +09:00
|
|
|
export { ItemAddDialog, type OrderItem } from "./ItemAddDialog";
|
|
|
|
|
|
|
|
|
|
// 문서 컴포넌트
|
|
|
|
|
export {
|
|
|
|
|
ContractDocument,
|
|
|
|
|
TransactionDocument,
|
|
|
|
|
PurchaseOrderDocument,
|
|
|
|
|
OrderDocumentModal,
|
|
|
|
|
type OrderDocumentType,
|
|
|
|
|
type OrderDocumentData,
|
2026-01-20 09:00:27 +09:00
|
|
|
} from "./documents";
|
|
|
|
|
|
|
|
|
|
// V2 상세/수정 컴포넌트
|
|
|
|
|
export { OrderSalesDetailView } from "./OrderSalesDetailView";
|
|
|
|
|
export { OrderSalesDetailEdit } from "./OrderSalesDetailEdit";
|