summaryrefslogtreecommitdiff
path: root/lib/bidding/detail
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-12-01 10:28:05 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-12-01 10:28:05 +0000
commitcd0ce0cbe8af8719a6f542098ec78f2a5c1222ce (patch)
treeaca09d123c60852400c2fc8603928e110c53e8f5 /lib/bidding/detail
parent3a76ebfa18df15096ac21d10bf46f85b4d1e45e2 (diff)
(최겸) 구매 입찰 사전견적 개발(rfq-last)
Diffstat (limited to 'lib/bidding/detail')
-rw-r--r--lib/bidding/detail/service.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/bidding/detail/service.ts b/lib/bidding/detail/service.ts
index e425959c..f52ecb1e 100644
--- a/lib/bidding/detail/service.ts
+++ b/lib/bidding/detail/service.ts
@@ -2086,20 +2086,6 @@ export async function submitPartnerResponse(
const biddingId = biddingCompanyInfo[0]?.biddingId
- // 최종제출인 경우, 입찰 상태를 평가중으로 변경 (bidding_opened 상태에서만)
- if (biddingId && response.finalQuoteAmount !== undefined && response.isFinalSubmission) {
- await tx
- .update(biddings)
- .set({
- status: 'evaluation_of_bidding',
- updatedAt: new Date()
- })
- .where(and(
- eq(biddings.id, biddingId),
- eq(biddings.status, 'bidding_opened')
- ))
- }
-
return biddingId
})