diff options
Diffstat (limited to 'lib/bidding/detail/service.ts')
| -rw-r--r-- | lib/bidding/detail/service.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/bidding/detail/service.ts b/lib/bidding/detail/service.ts index 297c6f98..e49c0628 100644 --- a/lib/bidding/detail/service.ts +++ b/lib/bidding/detail/service.ts @@ -1360,10 +1360,10 @@ export async function updateBiddingParticipation( } // ================================================= -// 품목별 견적 관련 함수들 (본입찰용) +// 품목별 입찰 관련 함수들 (본입찰용) // ================================================= -// 품목별 견적 임시 저장 (본입찰용) +// 품목별 입찰 임시 저장 (본입찰용) export async function saveBiddingDraft( biddingCompanyId: number, prItemQuotations: Array<{ @@ -1380,7 +1380,7 @@ export async function saveBiddingDraft( let totalAmount = 0 await db.transaction(async (tx) => { - // 품목별 견적 Upsert 방식으로 저장 + // 품목별 입찰 Upsert 방식으로 저장 for (const item of prItemQuotations) { // 기존 데이터 확인 const existingItem = await tx @@ -1437,7 +1437,7 @@ export async function saveBiddingDraft( return { success: true, - message: '품목별 견적이 임시 저장되었습니다.', + message: '품목별 입찰이 임시 저장되었습니다.', totalAmount } } catch (error) { |
