summaryrefslogtreecommitdiff
path: root/lib/bidding/detail
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bidding/detail')
-rw-r--r--lib/bidding/detail/service.ts8
-rw-r--r--lib/bidding/detail/table/bidding-detail-vendor-columns.tsx8
2 files changed, 8 insertions, 8 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) {
diff --git a/lib/bidding/detail/table/bidding-detail-vendor-columns.tsx b/lib/bidding/detail/table/bidding-detail-vendor-columns.tsx
index 80e50119..a0b69020 100644
--- a/lib/bidding/detail/table/bidding-detail-vendor-columns.tsx
+++ b/lib/bidding/detail/table/bidding-detail-vendor-columns.tsx
@@ -72,7 +72,7 @@ export function getBiddingDetailVendorColumns({
},
{
accessorKey: 'quotationAmount',
- header: '견적금액',
+ header: '입찰금액',
cell: ({ row }) => {
const hasAmount = row.original.quotationAmount && Number(row.original.quotationAmount) > 0
return (
@@ -82,7 +82,7 @@ export function getBiddingDetailVendorColumns({
<button
onClick={() => onViewQuotationHistory?.(row.original)}
className="text-primary hover:text-primary/80 hover:underline cursor-pointer"
- title="품목별 견적 상세 보기"
+ title="품목별 입찰 상세 보기"
>
<span className="border-b-2 border-primary">
{Number(row.original.quotationAmount).toLocaleString()} {row.original.currency}
@@ -219,12 +219,12 @@ export function getBiddingDetailVendorColumns({
</>
)}
- {/* 견적 히스토리 (응찰한 업체만) */}
+ {/* 입찰 히스토리 (응찰한 업체만) */}
{vendor.isBiddingParticipated === true && onViewQuotationHistory && (
<>
<DropdownMenuSeparator />
<DropdownMenuItem onClick={() => onViewQuotationHistory(vendor)}>
- 견적 히스토리
+ 입찰 히스토리
</DropdownMenuItem>
</>
)}