summaryrefslogtreecommitdiff
path: root/lib/approval
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-10-29 06:20:56 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-10-29 06:20:56 +0000
commit2fc9e5492e220041ba322d9a1479feb7803228cf (patch)
treeda8ace07ed23ba92f2408c9c6e9ae2e31be20160 /lib/approval
parent5202c4b56d9565c7ac0c2a62255763462cef0d3d (diff)
(최겸) 구매 PQ수정, 정규업체 결재 개발(진행중)
Diffstat (limited to 'lib/approval')
-rw-r--r--lib/approval/handlers-registry.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/approval/handlers-registry.ts b/lib/approval/handlers-registry.ts
index 1e8140e5..1db79974 100644
--- a/lib/approval/handlers-registry.ts
+++ b/lib/approval/handlers-registry.ts
@@ -30,7 +30,11 @@ export async function initializeApprovalHandlers() {
// const { createPurchaseOrderInternal } = await import('@/lib/purchase-order/handlers');
// registerActionHandler('purchase_order_request', createPurchaseOrderInternal);
- // 3. 계약 승인 핸들러
+ // 3. 정규업체 등록 핸들러
+ const { registerVendorInternal } = await import('@/lib/vendor-regular-registrations/handlers');
+ registerActionHandler('vendor_regular_registration', registerVendorInternal);
+
+ // 4. 계약 승인 핸들러
// const { approveContractInternal } = await import('@/lib/contract/handlers');
// registerActionHandler('contract_approval', approveContractInternal);