1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
"use client";
import { ColumnDef } from "@tanstack/react-table";
import { GttDwgReceiptItem } from "../actions";
// 날짜 포맷 헬퍼
function formatDate(dateStr: string | null): string | null {
if (!dateStr || dateStr.length !== 8) return null;
return `${dateStr.substring(0, 4)}-${dateStr.substring(4, 6)}-${dateStr.substring(6, 8)}`;
}
// Document Type 필터
export type DocumentType = "ALL" | "GTT_DELIVERABLES" | "SHI_INPUT";
interface GttDrawingListColumnsOptions {
documentType: DocumentType;
}
export function createGttDrawingListColumns({
documentType,
}: GttDrawingListColumnsOptions): ColumnDef<GttDwgReceiptItem>[] {
const baseColumns: ColumnDef<GttDwgReceiptItem>[] = [
{
accessorKey: "DrawingNo",
header: "도면번호",
minSize: 200,
cell: ({ row }) => {
return <div className="font-medium">{row.getValue("DrawingNo")}</div>;
},
},
{
accessorKey: "DrawingName",
header: "도면명",
minSize: 400,
cell: ({ row }) => {
return <div>{row.getValue("DrawingName")}</div>;
},
},
{
accessorKey: "Discipline",
header: "설계공종",
minSize: 80,
},
{
accessorKey: "Manager",
header: "담당자명",
minSize: 200,
cell: ({ row }) => {
const managerENM = row.original.ManagerENM;
const manager = row.getValue("Manager");
return <div>{managerENM || manager}</div>;
},
},
{
accessorKey: "DrawingMoveGbn",
header: "구분",
minSize: 120,
},
];
// Document Type에 따른 날짜 컬럼
const dateColumns: ColumnDef<GttDwgReceiptItem>[] = [];
// ALL: 모든 컬럼 표시
if (documentType === "ALL") {
dateColumns.push(
{
accessorKey: "GTTInput_PlanDate",
header: "GTT Input 예정일",
minSize: 150,
cell: ({ row }) => formatDate(row.getValue("GTTInput_PlanDate")),
},
{
accessorKey: "GTTInput_ResultDate",
header: "GTT Input 결과일",
minSize: 150,
cell: ({ row }) => formatDate(row.getValue("GTTInput_ResultDate")),
},
{
accessorKey: "GTTPreDwg_PlanDate",
header: "GTT Pre 예정일",
minSize: 140,
cell: ({ row }) => formatDate(row.getValue("GTTPreDwg_PlanDate")),
},
{
accessorKey: "GTTPreDwg_ResultDate",
header: "GTT Pre 결과일",
minSize: 140,
cell: ({ row }) => formatDate(row.getValue("GTTPreDwg_ResultDate")),
},
{
accessorKey: "GTTWorkingDwg_PlanDate",
header: "GTT Working 예정일",
minSize: 160,
cell: ({ row }) => formatDate(row.getValue("GTTWorkingDwg_PlanDate")),
},
{
accessorKey: "GTTWorkingDwg_ResultDate",
header: "GTT Working 결과일",
minSize: 160,
cell: ({ row }) => formatDate(row.getValue("GTTWorkingDwg_ResultDate")),
}
);
}
// SHI_INPUT: 도면제출 (GTTInput만)
else if (documentType === "SHI_INPUT") {
dateColumns.push(
{
accessorKey: "GTTInput_PlanDate",
header: "Input 예정일",
minSize: 120,
cell: ({ row }) => formatDate(row.getValue("GTTInput_PlanDate")),
},
{
accessorKey: "GTTInput_ResultDate",
header: "Input 결과일",
minSize: 120,
cell: ({ row }) => formatDate(row.getValue("GTTInput_ResultDate")),
}
);
}
// GTT_DELIVERABLES: 도면입수 (Pre, Working)
else if (documentType === "GTT_DELIVERABLES") {
dateColumns.push(
{
accessorKey: "GTTPreDwg_PlanDate",
header: "Pre 예정일",
minSize: 120,
cell: ({ row }) => formatDate(row.getValue("GTTPreDwg_PlanDate")),
},
{
accessorKey: "GTTPreDwg_ResultDate",
header: "Pre 결과일",
minSize: 120,
cell: ({ row }) => formatDate(row.getValue("GTTPreDwg_ResultDate")),
},
{
accessorKey: "GTTWorkingDwg_PlanDate",
header: "Working 예정일",
minSize: 130,
cell: ({ row }) => formatDate(row.getValue("GTTWorkingDwg_PlanDate")),
},
{
accessorKey: "GTTWorkingDwg_ResultDate",
header: "Working 결과일",
minSize: 130,
cell: ({ row }) => formatDate(row.getValue("GTTWorkingDwg_ResultDate")),
}
);
}
// 생성일시 컬럼
const endColumns: ColumnDef<GttDwgReceiptItem>[] = [
{
accessorKey: "CreateDt",
header: "생성일시",
minSize: 200,
cell: ({ row }) => {
return <div className="text-sm text-muted-foreground">{row.getValue("CreateDt")}</div>;
},
},
];
return [...baseColumns, ...dateColumns, ...endColumns];
}
|