summaryrefslogtreecommitdiff
path: root/lib/bidding/approval-actions.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bidding/approval-actions.ts')
-rw-r--r--lib/bidding/approval-actions.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bidding/approval-actions.ts b/lib/bidding/approval-actions.ts
index 49b9f847..0fb16439 100644
--- a/lib/bidding/approval-actions.ts
+++ b/lib/bidding/approval-actions.ts
@@ -271,7 +271,7 @@ export async function requestBiddingInvitationWithApproval(data: {
.update(biddings)
.set({
status: 'approval_pending', // 결재 진행중 상태
- updatedBy: String(data.currentUser.id), // id를 string으로 변환
+ // updatedBy: String(data.currentUser.id), // 기존 등록자 유지를 위해 주석 처리
updatedAt: new Date()
})
.where(eq(biddings.id, data.biddingId));
@@ -492,7 +492,7 @@ export async function requestBiddingClosureWithApproval(data: {
.update(biddings)
.set({
status: 'approval_pending', // 폐찰 결재 진행중 상태
- updatedBy: Number(data.currentUser.id),
+ // updatedBy: Number(data.currentUser.id), // 기존 등록자 유지를 위해 주석 처리
updatedAt: new Date()
})
.where(eq(biddings.id, data.biddingId));
@@ -698,7 +698,7 @@ export async function requestBiddingAwardWithApproval(data: {
.update(biddings)
.set({
status: 'approval_pending', // 낙찰 결재 진행중 상태
- updatedBy: Number(data.currentUser.id),
+ // updatedBy: Number(data.currentUser.id), // 기존 등록자 유지를 위해 주석 처리
updatedAt: new Date()
})
.where(eq(biddings.id, data.biddingId));