summaryrefslogtreecommitdiff
path: root/lib/bidding/actions.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bidding/actions.ts')
-rw-r--r--lib/bidding/actions.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bidding/actions.ts b/lib/bidding/actions.ts
index d0c7a0cd..5909cd62 100644
--- a/lib/bidding/actions.ts
+++ b/lib/bidding/actions.ts
@@ -613,11 +613,11 @@ export async function cancelDisposalAction(
}
}
- // 3. 입찰 상태를 입찰 진행중으로 변경
+ // 3. 입찰 상태를 입찰생성으로 변경
await tx
.update(biddings)
.set({
- status: 'evaluation_of_bidding',
+ status: 'bidding_generated',
updatedAt: new Date(),
updatedBy: userName,
})
@@ -734,7 +734,7 @@ export async function earlyOpenBiddingAction(biddingId: number) {
// 5. 참여협력사 중 최종응찰 버튼을 클릭한 업체들만 있는지 검증
// bidding_submitted 상태인 업체들이 있는지 확인 (이미 위에서 검증됨)
- // 6. 조기개찰 상태로 변경
+ // 6. 입찰평가중 상태로 변경
await tx
.update(biddings)
.set({