summaryrefslogtreecommitdiff
path: root/config/rfqHistoryColumnsConfig.ts
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-03-26 00:37:41 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-03-26 00:37:41 +0000
commite0dfb55c5457aec489fc084c4567e791b4c65eb1 (patch)
tree68543a65d88f5afb3a0202925804103daa91bc6f /config/rfqHistoryColumnsConfig.ts
3/25 까지의 대표님 작업사항
Diffstat (limited to 'config/rfqHistoryColumnsConfig.ts')
-rw-r--r--config/rfqHistoryColumnsConfig.ts73
1 files changed, 73 insertions, 0 deletions
diff --git a/config/rfqHistoryColumnsConfig.ts b/config/rfqHistoryColumnsConfig.ts
new file mode 100644
index 00000000..67ec7fbd
--- /dev/null
+++ b/config/rfqHistoryColumnsConfig.ts
@@ -0,0 +1,73 @@
+import { RfqHistoryRow } from "@/lib/vendors/rfq-history-table/rfq-history-table"
+
+export interface RfqHistoryColumnConfig {
+ id: keyof RfqHistoryRow
+ label: string
+ group?: string
+ excelHeader?: string
+ type?: string
+ size?: number
+}
+
+export const rfqHistoryColumnsConfig: RfqHistoryColumnConfig[] = [
+ {
+ id: "rfqCode",
+ label: "RFQ Code",
+ excelHeader: "RFQ Code",
+ size: 120,
+ },
+ {
+ id: "projectCode",
+ label: "Project Code",
+ excelHeader: "Project Code",
+ size: 120,
+ },
+ {
+ id: "projectName",
+ label: "Project Name",
+ excelHeader: "Project Name",
+ size: 200,
+ },
+ {
+ id: "description",
+ label: "Description",
+ excelHeader: "Description",
+ size: 300,
+ },
+ {
+ id: "status",
+ label: "Status",
+ excelHeader: "Status",
+ size: 100,
+ },
+ {
+ id: "vendorStatus",
+ label: "Vendor Status",
+ excelHeader: "Vendor Status",
+ size: 120,
+ },
+ {
+ id: "totalAmount",
+ label: "Total Amount",
+ excelHeader: "Total Amount",
+ size: 120,
+ },
+ {
+ id: "leadTime",
+ label: "Lead Time",
+ excelHeader: "Lead Time",
+ size: 100,
+ },
+ {
+ id: "dueDate",
+ label: "Due Date",
+ excelHeader: "Due Date",
+ size: 120,
+ },
+ {
+ id: "createdAt",
+ label: "Created At",
+ excelHeader: "Created At",
+ size: 120,
+ },
+] \ No newline at end of file