summaryrefslogtreecommitdiff
path: root/lib/rfq-last/table/rfq-assign-pic-dialog.tsx
blob: 9ca34ccdeee81af63dcf42fcd8238b292c74bf8d (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
"use client";

import * as React from "react";
import {
  Dialog,
  DialogContent,
  DialogDescription,
  DialogFooter,
  DialogHeader,
  DialogTitle,
} from "@/components/ui/dialog";
import { Button } from "@/components/ui/button";
import { Loader2, Users } from "lucide-react";
import { toast } from "sonner";
import { assignPicToRfqs } from "../service";
import { Badge } from "@/components/ui/badge";
import { Alert, AlertDescription } from "@/components/ui/alert";
import { 
  PurchaseGroupCodeSingleSelector,
  PurchaseGroupCodeWithUser 
} from "@/components/common/selectors/purchase-group-code";

interface RfqAssignPicDialogProps {
  open: boolean;
  onOpenChange: (open: boolean) => void;
  selectedRfqIds: number[];
  selectedRfqCodes: string[];
  onSuccess?: () => void;
}

export function RfqAssignPicDialog({
  open,
  onOpenChange,
  selectedRfqIds,
  selectedRfqCodes,
  onSuccess,
}: RfqAssignPicDialogProps) {
  const [isAssigning, setIsAssigning] = React.useState(false);
  const [selectedCode, setSelectedCode] = React.useState<PurchaseGroupCodeWithUser | undefined>(undefined);
  const [selectorOpen, setSelectorOpen] = React.useState(false);

  // ITB만 필터링 (rfqCode가 "I"로 시작하는 것)
  const itbCodes = React.useMemo(() => {
    return selectedRfqCodes.filter(code => code.startsWith("I"));
  }, [selectedRfqCodes]);

  const itbIds = React.useMemo(() => {
    return selectedRfqIds.filter((id, index) => selectedRfqCodes[index]?.startsWith("I"));
  }, [selectedRfqIds, selectedRfqCodes]);

  // 다이얼로그 열릴 때 초기화
  React.useEffect(() => {
    if (open) {
      setSelectedCode(undefined);
    }
  }, [open]);

  const handleCodeSelect = (code: PurchaseGroupCodeWithUser) => {
    setSelectedCode(code);
    
    // 유저 정보가 없는 경우 toast로 알림
    if (!code.user) {
      toast.warning(
        `해당 구매그룹코드(${code.PURCHASE_GROUP_CODE})의 사번 정보의 유저가 없습니다`,
        {
          description: `사번: ${code.EMPLOYEE_NUMBER}`,
          duration: 5000,
        }
      );
    }
  };

  const handleAssign = async () => {
    if (!selectedCode) {
      toast.error("구매그룹코드를 선택해주세요");
      return;
    }

    if (!selectedCode.user) {
      toast.error("선택한 구매그룹코드에 연결된 사용자가 없습니다");
      return;
    }

    if (itbIds.length === 0) {
      toast.error("선택한 항목 중 ITB가 없습니다");
      return;
    }

    setIsAssigning(true);
    try {
      const result = await assignPicToRfqs({
        rfqIds: itbIds,
        picUserId: selectedCode.user.id,
      });

      if (result.success) {
        toast.success(result.message);
        onSuccess?.();
        onOpenChange(false);
      } else {
        toast.error(result.message);
      }
    } catch (error) {
      console.error("담당자 지정 오류:", error);
      toast.error("담당자 지정 중 오류가 발생했습니다");
    } finally {
      setIsAssigning(false);
    }
  };

  return (
    <Dialog open={open} onOpenChange={onOpenChange}>
      <DialogContent className="sm:max-w-[500px]">
        <DialogHeader>
          <DialogTitle className="flex items-center gap-2">
            <Users className="h-5 w-5" />
            담당자 지정
          </DialogTitle>
          <DialogDescription>
            선택한 ITB에 구매 담당자를 지정합니다
          </DialogDescription>
        </DialogHeader>

        <div className="space-y-4">
          {/* 선택된 ITB 정보 */}
          <div className="space-y-2">
            <label className="text-sm font-medium">선택된 ITB</label>
            <div className="p-3 bg-muted rounded-md">
              <div className="flex items-center gap-2 mb-2">
                <Badge variant="secondary">{itbCodes.length}건</Badge>
                {itbCodes.length !== selectedRfqCodes.length && (
                  <span className="text-xs text-muted-foreground">
                    (전체 {selectedRfqCodes.length}건 중)
                  </span>
                )}
              </div>
              <div className="max-h-[100px] overflow-y-auto">
                <div className="flex flex-wrap gap-1">
                  {itbCodes.slice(0, 10).map((code, index) => (
                    <Badge key={index} variant="outline" className="text-xs">
                      {code}
                    </Badge>
                  ))}
                  {itbCodes.length > 10 && (
                    <Badge variant="outline" className="text-xs">
                      +{itbCodes.length - 10}개
                    </Badge>
                  )}
                </div>
              </div>
            </div>
            {itbCodes.length === 0 && (
              <Alert className="border-orange-200 bg-orange-50">
                <AlertDescription className="text-orange-800">
                  선택한 항목 중 ITB (I로 시작하는 코드)가 없습니다.
                </AlertDescription>
              </Alert>
            )}
          </div>

          {/* 구매 담당자 선택 (구매그룹코드) */}
          <div className="space-y-2">
            <label className="text-sm font-medium">구매 담당자 (구매그룹코드)</label>
            <Button
              type="button"
              variant="outline"
              className="w-full justify-start h-auto min-h-[40px]"
              disabled={itbCodes.length === 0}
              onClick={() => setSelectorOpen(true)}
            >
              {selectedCode ? (
                <div className="flex flex-col items-start gap-1 w-full">
                  <div className="flex items-center gap-2">
                    <Badge variant="secondary" className="font-mono">
                      {selectedCode.PURCHASE_GROUP_CODE}
                    </Badge>
                    <span>{selectedCode.DISPLAY_NAME}</span>
                  </div>
                  {selectedCode.user && (
                    <div className="text-xs text-muted-foreground">
                      사용자: {selectedCode.user.name} ({selectedCode.user.email})
                    </div>
                  )}
                  {!selectedCode.user && (
                    <div className="text-xs text-orange-600">
                      ⚠️ 연결된 사용자가 없습니다
                    </div>
                  )}
                </div>
              ) : (
                <span className="text-muted-foreground">
                  구매그룹코드를 선택하세요
                </span>
              )}
            </Button>
            
            {selectedCode && !selectedCode.user && (
              <Alert className="border-orange-200 bg-orange-50">
                <AlertDescription className="text-orange-800 text-xs">
                  선택한 구매그룹코드에 연결된 사용자가 없습니다. 다른 구매그룹코드를 선택해주세요.
                </AlertDescription>
              </Alert>
            )}
          </div>
        </div>

        {/* 구매그룹코드 선택 다이얼로그 */}
        <PurchaseGroupCodeSingleSelector
          open={selectorOpen}
          onOpenChange={setSelectorOpen}
          selectedCode={selectedCode}
          onCodeSelect={handleCodeSelect}
          title="구매 담당자 선택"
          description="ITB에 지정할 구매 담당자의 구매그룹코드를 선택하세요"
          showConfirmButtons={false}
        />

        <DialogFooter>
          <Button
            type="button"
            variant="outline"
            onClick={() => onOpenChange(false)}
            disabled={isAssigning}
          >
            취소
          </Button>
          <Button
            type="submit"
            onClick={handleAssign}
            disabled={!selectedCode || !selectedCode.user || itbCodes.length === 0 || isAssigning}
          >
            {isAssigning ? (
              <>
                <Loader2 className="mr-2 h-4 w-4 animate-spin" />
                지정 중...
              </>
            ) : (
              "담당자 지정"
            )}
          </Button>
        </DialogFooter>
      </DialogContent>
    </Dialog>
  );
}