diff --git a/i18n/locales/en/menu.json b/i18n/locales/en/menu.json
index 9b559201..368dbd92 100644
--- a/i18n/locales/en/menu.json
+++ b/i18n/locales/en/menu.json
@@ -130,6 +130,7 @@
"legalReview":"Legal Review Status",
"legalResponse":"Legal Response",
"vendor_regular_registrations": "Regular Vendor Registration Management",
+ "vendor_regular_registrations_desc": "Check and manage regular vendor registration status",
"vendor_consent": "Consent",
"vendor_consent_desc": "Terms and Conditions"
},
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') && (
*/}
diff --git a/lib/rfq-last/vendor-response/editor/quotation-items-table.tsx b/lib/rfq-last/vendor-response/editor/quotation-items-table.tsx
index 266ba39b..281316eb 100644
--- a/lib/rfq-last/vendor-response/editor/quotation-items-table.tsx
+++ b/lib/rfq-last/vendor-response/editor/quotation-items-table.tsx
@@ -406,7 +406,7 @@ export default function QuotationItemsTable({ prItems, decimalPlaces = 2 }: Quot
// 저장 버튼 클릭 핸들러
const handleSaveDetail = () => {
- setValue(`quotationItems.${index}.deviationReason`, localDeviationReason)
+ setValue(`quotationItems.${index}.deviationReason`, localTechnicalCompliance ? "" : localDeviationReason)
setValue(`quotationItems.${index}.itemRemark`, localItemRemark)
setValue(`quotationItems.${index}.technicalCompliance`, localTechnicalCompliance)
setValue(`quotationItems.${index}.alternativeProposal`, localAlternativeProposal)
@@ -430,7 +430,7 @@ export default function QuotationItemsTable({ prItems, decimalPlaces = 2 }: Quot
{/* PR 아이템 정보 */}
-
+ {/*
PR 아이템 정보
@@ -466,7 +466,7 @@ export default function QuotationItemsTable({ prItems, decimalPlaces = 2 }: Quot
)}
-
+ */}
{/* 제조사 정보 */}
{/*
@@ -534,17 +534,19 @@ export default function QuotationItemsTable({ prItems, decimalPlaces = 2 }: Quot
/>
+ )}
diff --git a/lib/rfq-last/vendor-response/editor/vendor-response-editor.tsx b/lib/rfq-last/vendor-response/editor/vendor-response-editor.tsx
index b7e67881..abd2b516 100644
--- a/lib/rfq-last/vendor-response/editor/vendor-response-editor.tsx
+++ b/lib/rfq-last/vendor-response/editor/vendor-response-editor.tsx
@@ -466,6 +466,11 @@ export default function VendorResponseEditor({