diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-14 05:25:21 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-14 05:25:21 +0000 |
| commit | 39f12cb19f29cbc5568057e154e6adf4789ae736 (patch) | |
| tree | 2741b255fd9b6253ed6ba67b72d922e7401d8c49 /lib/bidding/pre-quote/service.ts | |
| parent | 04752b7096554c4a961ebc1f09ff0e81ea9def68 (diff) | |
(최겸) 입찰 userid 수정
Diffstat (limited to 'lib/bidding/pre-quote/service.ts')
| -rw-r--r-- | lib/bidding/pre-quote/service.ts | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/bidding/pre-quote/service.ts b/lib/bidding/pre-quote/service.ts index e1df986e..7a5db949 100644 --- a/lib/bidding/pre-quote/service.ts +++ b/lib/bidding/pre-quote/service.ts @@ -146,7 +146,7 @@ export async function updateBiddingCompany(id: number, input: UpdateBiddingCompa } // 본입찰 등록 상태 업데이트 (복수 업체 선택 가능) -export async function updatePreQuoteSelection(companyIds: number[], isSelected: boolean, userId: string) { +export async function updatePreQuoteSelection(companyIds: number[], isSelected: boolean) { try { // 업체들의 입찰 ID 조회 (캐시 무효화를 위해) const companies = await db @@ -681,8 +681,7 @@ export async function submitPreQuoteResponse( // Partners에서 사전견적 참여 의사 결정 (수락/거절) export async function respondToPreQuoteInvitation( biddingCompanyId: number, - response: 'accepted' | 'declined', - userId: string + response: 'accepted' | 'declined' ) { try { await db.update(biddingCompanies) @@ -713,8 +712,7 @@ export async function respondToPreQuoteInvitation( // 벤더에서 사전견적 참여 여부 결정 (isPreQuoteSelected, isPreQuoteParticipated 사용) export async function setPreQuoteParticipation( biddingCompanyId: number, - isParticipating: boolean, - userId: string + isParticipating: boolean ) { try { await db.update(biddingCompanies) |
