summaryrefslogtreecommitdiff
path: root/lib/bidding/detail/service.ts
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-11-25 11:51:27 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-11-25 11:51:27 +0000
commit835df8ddc115ffa74414db2a4fab7efc0d0056a9 (patch)
treebfe814c7b51ee1541d84b6e2dee01f28594763ac /lib/bidding/detail/service.ts
parent6160e8bd61360ada9e8e0574671c38292eaba9e7 (diff)
(최겸) 구매 입찰 수정v2
Diffstat (limited to 'lib/bidding/detail/service.ts')
-rw-r--r--lib/bidding/detail/service.ts8
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) {