diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-10-30 10:44:47 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-10-30 10:44:47 +0000 |
| commit | 871a6d46a769cbe9e87146434f4bcb2d6792ab81 (patch) | |
| tree | acc25b3645e2253625e68f3721a203131ff4f3c4 /config | |
| parent | 17b9d2016be7c0ab6571de6aba36b3f4ea37bdb1 (diff) | |
(최겸) 구매 PQ/실사 재개발(테스트 필요), 정규업체등록 결재 개발, 실사 의뢰 결재 후처리 등
Diffstat (limited to 'config')
| -rw-r--r-- | config/vendorInvestigationsColumnsConfig.ts | 2 | ||||
| -rw-r--r-- | config/vendorRegularRegistrationsColumnsConfig.ts | 23 |
2 files changed, 10 insertions, 15 deletions
diff --git a/config/vendorInvestigationsColumnsConfig.ts b/config/vendorInvestigationsColumnsConfig.ts index 44a0cf09..1fab1de6 100644 --- a/config/vendorInvestigationsColumnsConfig.ts +++ b/config/vendorInvestigationsColumnsConfig.ts @@ -8,7 +8,7 @@ export type VendorInvestigationsViewRaw = { pqSubmissionId: number | null requesterId: number | null qmManagerId: number | null - investigationStatus: "PLANNED" | "IN_PROGRESS" | "COMPLETED" | "CANCELED" | "SUPPLEMENT_REQUIRED" | "RESULT_SENT" + investigationStatus: "PLANNED" | "QM_REVIEW_CONFIRMED" | "IN_PROGRESS" | "COMPLETED" | "CANCELED" | "SUPPLEMENT_REQUIRED" | "RESULT_SENT" investigationAddress: string | null investigationMethod: "PURCHASE_SELF_EVAL" | "DOCUMENT_EVAL" | "PRODUCT_INSPECTION" | "SITE_VISIT_EVAL" | null scheduledStartAt: Date | null diff --git a/config/vendorRegularRegistrationsColumnsConfig.ts b/config/vendorRegularRegistrationsColumnsConfig.ts index c69b4378..5cee82e5 100644 --- a/config/vendorRegularRegistrationsColumnsConfig.ts +++ b/config/vendorRegularRegistrationsColumnsConfig.ts @@ -137,27 +137,22 @@ export const vendorRegularRegistrationsColumnsConfig: VendorRegularRegistrationC ];
export const statusLabels: Record<string, string> = {
- audit_pass: "실사통과",
- cp_submitted: "CP등록",
- cp_review: "CP검토",
- cp_finished: "CP완료",
+ under_review: "검토중",
approval_ready: "조건충족",
- registration_requested: "등록요청됨",
- in_review: "정규등록검토",
- pending_approval: "장기미등록",
+ pending_approval: "결재진행중",
+ registration_completed: "등록완료",
+ registration_failed: "등록실패",
};
export const statusColors: Record<string, string> = {
- audit_pass: "bg-blue-100 text-blue-800",
- cp_submitted: "bg-green-100 text-green-800",
- cp_review: "bg-yellow-100 text-yellow-800",
- cp_finished: "bg-purple-100 text-purple-800",
+ under_review: "bg-blue-100 text-blue-800",
approval_ready: "bg-emerald-100 text-emerald-800",
- registration_requested: "bg-indigo-100 text-indigo-800",
- in_review: "bg-orange-100 text-orange-800",
- pending_approval: "bg-red-100 text-red-800",
+ pending_approval: "bg-yellow-100 text-yellow-800",
+ registration_completed: "bg-green-100 text-green-800",
+ registration_failed: "bg-red-100 text-red-800",
};
+
export const documentStatusColumns: { key: keyof VendorRegularRegistration["documentSubmissions"]; label: string }[] = [
{ key: "businessRegistration", label: "사업자등록증" },
{ key: "creditEvaluation", label: "신용평가서" },
|
