diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-19 09:24:58 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-19 09:24:58 +0000 |
| commit | 0d68dbcba27ce49c15f30126f7a5dfce974847a3 (patch) | |
| tree | f00f71a2c33f0110fc2ef9e1243b47719ab5c316 /lib/bidding/actions.ts | |
| parent | 60382940bac4ac8309be64be16f4774b6820df22 (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 c4c543d9..d0017413 100644 --- a/lib/bidding/actions.ts +++ b/lib/bidding/actions.ts @@ -613,16 +613,16 @@ export async function cancelDisposalAction( } } - // 3. 입찰 상태를 입찰생성으로 변경 + // 3. 입찰 상태를 입찰평가중으로 변경 await tx .update(biddings) .set({ - status: 'bidding_generated', + status: 'evaluation_of_bidding', updatedAt: new Date(), updatedBy: userName, }) .where(eq(biddings.id, biddingId)) - + return { success: true, message: '유찰 취소가 완료되었습니다.' |
