diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-17 07:06:52 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-17 07:06:52 +0000 |
| commit | 1532c1bf4a3236ce9056f33e51ddfebeff79ed5a (patch) | |
| tree | c3f3c43d0f73c4b7df4e34e9b1aa308604c562c9 /lib/bidding/actions.ts | |
| parent | a5be73b70e7d8e6be1724252e6923c664c3771f4 (diff) | |
(최겸) 구매 피드백 처리
Diffstat (limited to 'lib/bidding/actions.ts')
| -rw-r--r-- | lib/bidding/actions.ts | 6 |
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({ |
