summaryrefslogtreecommitdiff
path: root/config/projectAVLColumnsConfig.ts
diff options
context:
space:
mode:
Diffstat (limited to 'config/projectAVLColumnsConfig.ts')
-rw-r--r--config/projectAVLColumnsConfig.ts78
1 files changed, 78 insertions, 0 deletions
diff --git a/config/projectAVLColumnsConfig.ts b/config/projectAVLColumnsConfig.ts
new file mode 100644
index 00000000..3f927c35
--- /dev/null
+++ b/config/projectAVLColumnsConfig.ts
@@ -0,0 +1,78 @@
+import { ProjectApprovedVendors } from "@/db/schema"
+
+
+export interface ProjectAVLColumnConfig {
+ id: keyof ProjectApprovedVendors
+ label: string
+ group?: string
+ excelHeader?: string
+ type?: string
+}
+
+export const projectAVLColumnsConfig: ProjectAVLColumnConfig[] = [
+ // Basic Info
+ {
+ id: "vendor_code",
+ label: "업체 코드",
+ excelHeader: "업체 코드",
+ // group: "발굴정보",
+ },
+ {
+ id: "vendor_name",
+ label: "업체명",
+ excelHeader: "업체명",
+ // group: "Basic Info",
+ },
+
+ {
+ id: "tax_id",
+ label: "사업자등록번호",
+ excelHeader: "사업자등록번호",
+ // group: "발굴정보",
+ },
+ {
+ id: "vendor_type_name_ko",
+ label: "업체유형",
+ excelHeader: "업체유형",
+ // group: "Vendor 추가정보",
+ },
+ {
+ id: "vendor_phone",
+ label: "대표전화번호",
+ excelHeader: "대표전화번호",
+ // group: "발굴정보",
+ },
+ {
+ id: "vendor_email",
+ label: "대표이메일",
+ excelHeader: "대표이메일",
+ // group: "Vendor 추가정보",
+ },
+
+ {
+ id: "project_code",
+ label: "프로젝트 코드",
+ excelHeader: "프로젝트 코드",
+ // group: "Vendor 추가정보",
+ },
+ {
+ id: "project_name",
+ label: "프로젝트명",
+ excelHeader: "프로젝트명",
+ // group: "Vendor 추가정보",
+ },
+
+ {
+ id: "submitted_at",
+ label: "PQ 제출일",
+ excelHeader: "PQ 제출일",
+ // group: "Vendor 추가정보",
+ },
+
+ {
+ id: "approved_at",
+ label: "PQ 승인일",
+ excelHeader: "PQ 승인일",
+ // group: "Vendor 추가정보",
+ },
+] \ No newline at end of file