diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-03-26 00:37:41 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-03-26 00:37:41 +0000 |
| commit | e0dfb55c5457aec489fc084c4567e791b4c65eb1 (patch) | |
| tree | 68543a65d88f5afb3a0202925804103daa91bc6f /config/rfqsVendorColumnsConfig.ts | |
3/25 까지의 대표님 작업사항
Diffstat (limited to 'config/rfqsVendorColumnsConfig.ts')
| -rw-r--r-- | config/rfqsVendorColumnsConfig.ts | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/config/rfqsVendorColumnsConfig.ts b/config/rfqsVendorColumnsConfig.ts new file mode 100644 index 00000000..f31cc1c9 --- /dev/null +++ b/config/rfqsVendorColumnsConfig.ts @@ -0,0 +1,45 @@ +import { RfqWithAll } from "@/db/schema/rfq" + +export interface RfqColumnConfig { + id: keyof RfqWithAll + label: string + group?: string + excelHeader?: string + type?: string +} + +export const rfqsVendorColumnsConfig: RfqColumnConfig[] = [ + // Basic Info + { + id: "projectName", + label: "Project Name", + excelHeader: "Project Name", + // group: "Basic Info", + }, + { + id: "rfqCode", + label: "RFQ Code", + excelHeader: "RFQ Code", + // group: "Basic Info", + }, + { + id: "description", + label: "RFQ description", + excelHeader: "RFQ description", + // group: "Basic Info", + }, + + { + id: "rfqVendorStatus", + label: "RFQ Status", + excelHeader: "RFQ Status", + // group: "Basic Info", + }, + { + id: "dueDate", + label: "Due Date", + excelHeader: "Due Date", + // group: "Basic Info", + }, + +]
\ No newline at end of file |
