summaryrefslogtreecommitdiff
path: root/lib/techsales-rfq/table/detail-table/rfq-detail-column.tsx
blob: 3e50a516119c97f9300fc7987ebb9af4cd9e39b5 (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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
"use client"

import * as React from "react"
import type { ColumnDef, Row } from "@tanstack/react-table";
import { formatDate } from "@/lib/utils"
import { DataTableColumnHeaderSimple } from "@/components/data-table/data-table-column-simple-header"
import { Checkbox } from "@/components/ui/checkbox";
import { MessageCircle, MoreHorizontal, Trash2 } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Badge } from "@/components/ui/badge";
import {
  DropdownMenu,
  DropdownMenuContent,
  DropdownMenuItem,
  DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu";

export interface DataTableRowAction<TData> {
  row: Row<TData>;
  type: "communicate" | "delete"; 
}

// 벤더 견적 데이터 타입 정의
export interface RfqDetailView {
  id: number
  rfqId: number
  vendorId?: number | null
  vendorName: string | null
  vendorCode: string | null
  totalPrice: string | number | null
  currency: string | null
  validUntil: Date | null
  status: string | null
  remark: string | null
  submittedAt: Date | null
  acceptedAt: Date | null
  rejectionReason: string | null
  createdAt: Date | null
  updatedAt: Date | null
  createdByName: string | null
}

interface GetColumnsProps<TData> {
  setRowAction: React.Dispatch<
    React.SetStateAction<DataTableRowAction<TData> | null>
  >;
  unreadMessages?: Record<number, number>; // 읽지 않은 메시지 개수
}

export function getRfqDetailColumns({
  setRowAction,
  unreadMessages = {}
}: GetColumnsProps<RfqDetailView>): ColumnDef<RfqDetailView>[] {
  return [
    {
      id: "select",
      header: ({ table }) => (
        <Checkbox
          checked={
            table.getIsAllPageRowsSelected() ||
            (table.getIsSomePageRowsSelected() && "indeterminate")
          }
          onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
          aria-label="모두 선택"
        />
      ),
      cell: ({ row }) => {
        const status = row.original.status;
        const isDraft = status === "Draft";
        
        return (
          <Checkbox
            checked={row.getIsSelected()}
            onCheckedChange={(value) => row.toggleSelected(!!value)}
            disabled={!isDraft}
            aria-label="행 선택"
            className={!isDraft ? "opacity-50 cursor-not-allowed" : ""}
          />
        );
      },
      enableSorting: false,
      enableHiding: false,
      size: 40,
    },
    {
      accessorKey: "status",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="견적 상태" />
      ),
      cell: ({ row }) => {
        const status = row.getValue("status") as string;
        // 상태에 따른 배지 색상 설정
        let variant: "default" | "secondary" | "outline" | "destructive" = "outline";
        
        if (status === "Submitted") {
          variant = "default"; // 제출됨 - 기본 색상
        } else if (status === "Accepted") {
          variant = "secondary"; // 승인됨 - 보조 색상
        } else if (status === "Rejected") {
          variant = "destructive"; // 거부됨 - 위험 색상
        }
        
        return (
          <Badge variant={variant}>{status || "Draft"}</Badge>
        );
      },
      meta: {
        excelHeader: "견적 상태"
      },
      enableResizing: true,
      size: 120,
    },
    {
      accessorKey: "vendorCode",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="벤더 코드" />
      ),
      cell: ({ row }) => <div>{row.getValue("vendorCode")}</div>,
      meta: {
        excelHeader: "벤더 코드"
      },
      enableResizing: true,
      size: 120,
    },
    {
      accessorKey: "vendorName",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="벤더명" />
      ),
      cell: ({ row }) => {
        const vendorName = row.getValue("vendorName") as string | null;
        const vendorId = row.original.vendorId;
        
        if (!vendorName) return <div>-</div>;
        
        if (vendorId) {
          return (
            <Button
              variant="link"
              className="p-0 h-auto font-normal text-left justify-start hover:underline"
              onClick={() => {
                window.open(`/ko/evcp/tech-vendors/${vendorId}/info`, '_blank');
              }}
            >
              {vendorName}
            </Button>
          );
        }
        
        return <div>{vendorName}</div>;
      },
      meta: {
        excelHeader: "벤더명"
      },
      enableResizing: true,
      size: 160,
    },
    {
      accessorKey: "totalPrice",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="견적 금액" />
      ),
      cell: ({ row }) => {
        const value = row.getValue("totalPrice") as string | number | null;
        const currency = row.getValue("currency") as string | null;
        
        if (value === null || value === undefined) return "-";
        
        // 숫자로 변환 시도
        const numValue = typeof value === 'string' ? parseFloat(value) : value;
        
        return (
          <div className="font-medium">
            {isNaN(numValue) ? value : numValue.toLocaleString()} {currency}
          </div>
        );
      },
      meta: {
        excelHeader: "견적 금액"
      },
      enableResizing: true,
      size: 140,
    },
    {
      accessorKey: "currency",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="통화" />
      ),
      cell: ({ row }) => <div>{row.getValue("currency")}</div>,
      meta: {
        excelHeader: "통화"
      },
      enableResizing: true,
      size: 80,
    },
    {
      accessorKey: "validUntil",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="유효기간" />
      ),
      cell: ({ cell }) => {
        const value = cell.getValue() as Date | null;
        return value ? formatDate(value, "KR") : "-";
      },
      meta: {
        excelHeader: "유효기간"
      },
      enableResizing: true,
      size: 120,
    },
    {
      accessorKey: "submittedAt",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="제출일" />
      ),
      cell: ({ cell }) => {
        const value = cell.getValue() as Date | null;
        return value ? formatDate(value, "KR") : "-";
      },
      meta: {
        excelHeader: "제출일"
      },
      enableResizing: true,
      size: 120,
    },
    {
      accessorKey: "createdByName",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="등록자" />
      ),
      cell: ({ row }) => <div>{row.getValue("createdByName")}</div>,
      meta: {
        excelHeader: "등록자"
      },
      enableResizing: true,
      size: 120,
    },
    {
      accessorKey: "remark",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="비고" />
      ),
      cell: ({ row }) => <div>{row.getValue("remark") || "-"}</div>,
      meta: {
        excelHeader: "비고"
      },
      enableResizing: true,
      size: 200,
    },
    {
      id: "actions",
      header: () => <div className="text-right">동작</div>,
      cell: function Cell({ row }) {
        const vendorId = row.original.vendorId;
        const unreadCount = vendorId ? unreadMessages[vendorId] || 0 : 0;
        const status = row.original.status;
        const isDraft = status === "Draft";
        
        return (
          <div className="text-right flex items-center justify-end gap-1">
            {/* 커뮤니케이션 버튼 */}
            <div className="relative">
              <Button
                variant="ghost"
                size="sm"
                className="h-8 w-8 p-0"
                onClick={() => setRowAction({ row, type: "communicate" })}
                title="벤더와 커뮤니케이션"
              >
                <MessageCircle className="h-4 w-4" />
              </Button>
              {unreadCount > 0 && (
                <Badge 
                  variant="destructive" 
                  className="absolute -top-1 -right-1 h-4 w-4 p-0 text-xs flex items-center justify-center"
                >
                  {unreadCount > 9 ? '9+' : unreadCount}
                </Badge>
              )}
            </div>
            
            {/* 컨텍스트 메뉴 */}
            <DropdownMenu>
              <DropdownMenuTrigger asChild>
                <Button
                  variant="ghost"
                  size="sm"
                  className="h-8 w-8 p-0"
                  title="더 많은 작업"
                >
                  <MoreHorizontal className="h-4 w-4" />
                </Button>
              </DropdownMenuTrigger>
              <DropdownMenuContent align="end">
                <DropdownMenuItem
                  onClick={() => setRowAction({ row, type: "delete" })}
                  disabled={!isDraft}
                  className={!isDraft ? "opacity-50 cursor-not-allowed" : "text-destructive focus:text-destructive"}
                >
                  <Trash2 className="mr-2 h-4 w-4" />
                  벤더 삭제
                </DropdownMenuItem>
              </DropdownMenuContent>
            </DropdownMenu>
          </div>
        );
      },
      enableResizing: false,
      size: 120,
    },
  ];
}