summaryrefslogtreecommitdiff
path: root/lib/dolce/table/gtt-drawing-list-columns.tsx
blob: 94d4d7d1959fe1fcd154a6c413017c4e254078bc (plain)
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
"use client";

import { ColumnDef } from "@tanstack/react-table";
import { GttDwgReceiptItem } from "../actions";
import { formatDolceDateYYYYMMDD, formatDolceDateTime } from "../utils/date-formatter";

// Document Type 필터
export type DocumentType = "ALL" | "GTT_DELIVERABLES" | "SHI_INPUT";

interface GttDrawingListColumnsOptions {
  documentType: DocumentType;
  lng: string;
  t: any;
}

export function createGttDrawingListColumns({
  documentType,
  lng,
  t,
}: GttDrawingListColumnsOptions): ColumnDef<GttDwgReceiptItem>[] {
  const baseColumns: ColumnDef<GttDwgReceiptItem>[] = [
    {
      accessorKey: "DrawingNo",
      header: t("drawingList.columns.drawingNo"),
      minSize: 200,
      cell: ({ row }) => {
        return <div className="font-medium">{row.getValue("DrawingNo")}</div>;
      },
    },
    {
      accessorKey: "DrawingName",
      header: t("drawingList.columns.drawingName"),
      minSize: 400,
      cell: ({ row }) => {
        return <div>{row.getValue("DrawingName")}</div>;
      },
    },
    {
      accessorKey: "Discipline",
      header: t("drawingList.columns.discipline"),
      minSize: 80,
    },
    {
      accessorKey: "Manager",
      header: t("drawingList.columns.manager"),
      minSize: 200,
      cell: ({ row }) => {
        const managerENM = row.original.ManagerENM;
        const manager = row.getValue("Manager");
        return <div>{managerENM || manager}</div>;
      },
    },
    {
      accessorKey: "DrawingMoveGbn",
      header: "Type",
      minSize: 120,
      cell: ({ row }) => {

        const drawingMoveGbn = row.getValue("DrawingMoveGbn");
        let type = "";

        if (drawingMoveGbn == "도면입수") {
          type = "GTT -> SHI";
        } else if (drawingMoveGbn == "도면제출") {
          type = "SHI -> GTT";
        } else {
          type = drawingMoveGbn;
        }

        return <div>{type}</div>;
      },
    }
  ];

  // Document Type에 따른 날짜 컬럼
  const dateColumns: ColumnDef<GttDwgReceiptItem>[] = [];

  // ALL: 모든 컬럼 표시
  if (documentType === "ALL") {
    dateColumns.push(
      {
        accessorKey: "GTTInput_PlanDate",
        header: t("drawingList.columns.gttInputPlanDate"),
        minSize: 150,
        cell: ({ row }) => formatDolceDateYYYYMMDD(row.getValue("GTTInput_PlanDate")),
      },
      {
        accessorKey: "GTTInput_ResultDate",
        header: t("drawingList.columns.gttInputResultDate"),
        minSize: 150,
        cell: ({ row }) => formatDolceDateYYYYMMDD(row.getValue("GTTInput_ResultDate")),
      },
      {
        accessorKey: "GTTPreDwg_PlanDate",
        header: t("drawingList.columns.gttPreDwgPlanDate"),
        minSize: 140,
        cell: ({ row }) => formatDolceDateYYYYMMDD(row.getValue("GTTPreDwg_PlanDate")),
      },
      {
        accessorKey: "GTTPreDwg_ResultDate",
        header: t("drawingList.columns.gttPreDwgResultDate"),
        minSize: 140,
        cell: ({ row }) => formatDolceDateYYYYMMDD(row.getValue("GTTPreDwg_ResultDate")),
      },
      {
        accessorKey: "GTTWorkingDwg_PlanDate",
        header: t("drawingList.columns.gttWorkingDwgPlanDate"),
        minSize: 160,
        cell: ({ row }) => formatDolceDateYYYYMMDD(row.getValue("GTTWorkingDwg_PlanDate")),
      },
      {
        accessorKey: "GTTWorkingDwg_ResultDate",
        header: t("drawingList.columns.gttWorkingDwgResultDate"),
        minSize: 160,
        cell: ({ row }) => formatDolceDateYYYYMMDD(row.getValue("GTTWorkingDwg_ResultDate")),
      }
    );
  }
  // SHI_INPUT: 도면제출 (GTTInput만)
  else if (documentType === "SHI_INPUT") {
    dateColumns.push(
      {
        accessorKey: "GTTInput_PlanDate",
        header: t("drawingList.columns.inputPlanDate"),
        minSize: 120,
        cell: ({ row }) => formatDolceDateYYYYMMDD(row.getValue("GTTInput_PlanDate")),
      },
      {
        accessorKey: "GTTInput_ResultDate",
        header: t("drawingList.columns.inputResultDate"),
        minSize: 120,
        cell: ({ row }) => formatDolceDateYYYYMMDD(row.getValue("GTTInput_ResultDate")),
      }
    );
  }
  // GTT_DELIVERABLES: 도면입수 (Pre, Working)
  else if (documentType === "GTT_DELIVERABLES") {
    dateColumns.push(
      {
        accessorKey: "GTTPreDwg_PlanDate",
        header: t("drawingList.columns.prePlanDate"),
        minSize: 120,
        cell: ({ row }) => formatDolceDateYYYYMMDD(row.getValue("GTTPreDwg_PlanDate")),
      },
      {
        accessorKey: "GTTPreDwg_ResultDate",
        header: t("drawingList.columns.preResultDate"),
        minSize: 120,
        cell: ({ row }) => formatDolceDateYYYYMMDD(row.getValue("GTTPreDwg_ResultDate")),
      },
      {
        accessorKey: "GTTWorkingDwg_PlanDate",
        header: t("drawingList.columns.workingPlanDate"),
        minSize: 130,
        cell: ({ row }) => formatDolceDateYYYYMMDD(row.getValue("GTTWorkingDwg_PlanDate")),
      },
      {
        accessorKey: "GTTWorkingDwg_ResultDate",
        header: t("drawingList.columns.workingResultDate"),
        minSize: 130,
        cell: ({ row }) => formatDolceDateYYYYMMDD(row.getValue("GTTWorkingDwg_ResultDate")),
      }
    );
  }

  // 생성일시 컬럼
  const endColumns: ColumnDef<GttDwgReceiptItem>[] = [
    {
      accessorKey: "CreateDt",
      header: t("drawingList.columns.createDt"),
      minSize: 280,
      cell: ({ row }) => {
        const date = row.getValue("CreateDt") as string;
        return <div className="text-sm text-muted-foreground">{formatDolceDateTime(date)}</div>;
      },
    },
  ];

  return [...baseColumns, ...dateColumns, ...endColumns];
}