diff options
Diffstat (limited to 'config/vendorRegularRegistrationsColumnsConfig.ts')
| -rw-r--r-- | config/vendorRegularRegistrationsColumnsConfig.ts | 23 |
1 files changed, 9 insertions, 14 deletions
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: "신용평가서" },
|
