From 1532c1bf4a3236ce9056f33e51ddfebeff79ed5a Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 17 Nov 2025 07:06:52 +0000 Subject: (최겸) 구매 피드백 처리 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\230\353\242\260 \354\232\224\354\262\255.html" | 2 +- lib/bidding/actions.ts | 6 +- .../bidding-detail-vendor-toolbar-actions.tsx | 4 +- lib/bidding/pre-quote/service.ts | 17 +- lib/bidding/service.ts | 137 +++++--- lib/itb/service.ts | 2 +- .../request-investigation-dialog.tsx | 6 +- lib/pq/service.ts | 7 +- lib/rfq-last/table/rfq-table-columns.tsx | 6 +- lib/rfq-last/table/rfq-table-toolbar-actions.tsx | 4 +- .../editor/quotation-items-table.tsx | 30 +- .../editor/vendor-response-editor.tsx | 5 + lib/rfq-last/vendor/vendor-detail-dialog.tsx | 21 +- lib/users/auth/partners-auth.ts | 2 +- .../table/investigation-result-sheet.tsx | 49 ++- lib/vendor-investigation/validations.ts | 89 +++++- lib/vendor-regular-registrations/repository.ts | 3 +- .../table/request-vendor-investigate-dialog.tsx | 345 --------------------- .../table/vendors-table-toolbar-actions.tsx | 1 - 19 files changed, 264 insertions(+), 472 deletions(-) delete mode 100644 lib/vendors/table/request-vendor-investigate-dialog.tsx (limited to 'lib') diff --git "a/lib/approval/templates/\354\213\244\354\202\254\354\235\230\353\242\260 \353\260\217 \354\213\244\354\202\254\354\236\254\354\235\230\353\242\260 \354\232\224\354\262\255.html" "b/lib/approval/templates/\354\213\244\354\202\254\354\235\230\353\242\260 \353\260\217 \354\213\244\354\202\254\354\236\254\354\235\230\353\242\260 \354\232\224\354\262\255.html" index e2a7cf6d..dc5e5fd5 100644 --- "a/lib/approval/templates/\354\213\244\354\202\254\354\235\230\353\242\260 \353\260\217 \354\213\244\354\202\254\354\236\254\354\235\230\353\242\260 \354\232\224\354\262\255.html" +++ "b/lib/approval/templates/\354\213\244\354\202\254\354\235\230\353\242\260 \353\260\217 \354\213\244\354\202\254\354\236\254\354\235\230\353\242\260 \354\232\224\354\262\255.html" @@ -29,7 +29,7 @@ font-weight: 700; " > - VENDOR 실사의뢰 (재의뢰) + VENDOR 실사의뢰 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({ diff --git a/lib/bidding/detail/table/bidding-detail-vendor-toolbar-actions.tsx b/lib/bidding/detail/table/bidding-detail-vendor-toolbar-actions.tsx index e3db8861..491f29f7 100644 --- a/lib/bidding/detail/table/bidding-detail-vendor-toolbar-actions.tsx +++ b/lib/bidding/detail/table/bidding-detail-vendor-toolbar-actions.tsx @@ -180,8 +180,8 @@ export function BiddingDetailVendorToolbarActions({ <>
{/* 상태별 액션 버튼 */} - {/* 차수증가: 입찰공고 또는 입찰 진행중 상태 */} - {(bidding.status === 'bidding_generated' || bidding.status === 'bidding_opened') && ( + {/* 차수증가: 입찰평가중 또는 입찰 진행중 상태 */} + {(bidding.status === 'evaluation_of_bidding ' || bidding.status === 'bidding_opened') && (