summaryrefslogtreecommitdiff
path: root/lib/vendor-investigation/handlers.ts
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-10-30 10:44:47 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-10-30 10:44:47 +0000
commit871a6d46a769cbe9e87146434f4bcb2d6792ab81 (patch)
treeacc25b3645e2253625e68f3721a203131ff4f3c4 /lib/vendor-investigation/handlers.ts
parent17b9d2016be7c0ab6571de6aba36b3f4ea37bdb1 (diff)
(최겸) 구매 PQ/실사 재개발(테스트 필요), 정규업체등록 결재 개발, 실사 의뢰 결재 후처리 등
Diffstat (limited to 'lib/vendor-investigation/handlers.ts')
-rw-r--r--lib/vendor-investigation/handlers.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/vendor-investigation/handlers.ts b/lib/vendor-investigation/handlers.ts
index 6c0edbd7..24cad870 100644
--- a/lib/vendor-investigation/handlers.ts
+++ b/lib/vendor-investigation/handlers.ts
@@ -24,10 +24,12 @@ export async function requestPQInvestigationInternal(payload: {
investigationAddress: string;
investigationNotes?: string;
vendorNames?: string; // 복수 업체 이름 (표시용)
+ currentUser: { id: number; epId: string | null; email?: string };
}) {
debugLog('[PQInvestigationHandler] 실사 의뢰 핸들러 시작', {
pqCount: payload.pqSubmissionIds.length,
qmManagerId: payload.qmManagerId,
+ currentUser: payload.currentUser,
vendorNames: payload.vendorNames,
});
@@ -36,6 +38,7 @@ export async function requestPQInvestigationInternal(payload: {
debugLog('[PQInvestigationHandler] requestInvestigationAction 호출');
const result = await requestInvestigationAction(
payload.pqSubmissionIds,
+ payload.currentUser,
{
qmManagerId: payload.qmManagerId,
forecastedAt: payload.forecastedAt,