summaryrefslogtreecommitdiff
path: root/app/api/(S-ERP)
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-09-05 11:59:38 +0000
committerjoonhoekim <26rote@gmail.com>2025-09-05 11:59:38 +0000
commite832a508e1b3c531fb3e1b9761e18e1b55e3d76a (patch)
treeb18c85a4f448f6a45984444f0f68c915dcc5ea22 /app/api/(S-ERP)
parent50adedf48ee4674ebe00f1ee72d93485183cdc51 (diff)
(김준회) RFQ 인터페이스 처리, 변수명 오타 수정(VendorPossibleMaterials), 협력업체 관리페이지 구매요구사항 반영
Diffstat (limited to 'app/api/(S-ERP)')
-rw-r--r--app/api/(S-ERP)/(ECC)/IF_ECC_EVCP_PR_INFORMATION/route.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/api/(S-ERP)/(ECC)/IF_ECC_EVCP_PR_INFORMATION/route.ts b/app/api/(S-ERP)/(ECC)/IF_ECC_EVCP_PR_INFORMATION/route.ts
index 6eddf757..7290db0f 100644
--- a/app/api/(S-ERP)/(ECC)/IF_ECC_EVCP_PR_INFORMATION/route.ts
+++ b/app/api/(S-ERP)/(ECC)/IF_ECC_EVCP_PR_INFORMATION/route.ts
@@ -111,8 +111,8 @@ export async function POST(request: NextRequest) {
}
}
- // AN (RFQ) 데이터 처리 - procurementRfqs 테이블
- let rfqMappingResult = null;
+ // AN (RFQ) 데이터 처리 - rfqsLast 테이블
+ let rfqMappingResult: { success: boolean; message: string; processedCount: number } | null = null;
if (anHeaders.length > 0) {
rfqMappingResult = await mapAndSaveECCRfqData(anHeaders, anItems);
if (!rfqMappingResult.success) {