summaryrefslogtreecommitdiff
path: root/lib/general-contracts/main/general-contract-update-sheet.tsx
blob: 18095516eb49f2ef82ae429a216131177834e90a (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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
"use client"

import * as React from "react"
import { useForm } from "react-hook-form"
import { zodResolver } from "@hookform/resolvers/zod"
import { z } from "zod"
import { toast } from "sonner"
import { Button } from "@/components/ui/button"
import {
  Sheet,
  SheetContent,
  SheetDescription,
  SheetFooter,
  SheetHeader,
  SheetTitle,
} from "@/components/ui/sheet"
import {
  Form,
  FormControl,
  FormField,
  FormItem,
  FormLabel,
  FormMessage,
} from "@/components/ui/form"
import {
  Select,
  SelectContent,
  SelectItem,
  SelectTrigger,
  SelectValue,
} from "@/components/ui/select"
import { Input } from "@/components/ui/input"
import { Textarea } from "@/components/ui/textarea"
import {
  GENERAL_CONTRACT_CATEGORIES,
  GENERAL_CONTRACT_TYPES,
  GENERAL_EXECUTION_METHODS,
} from "@/lib/general-contracts/types"
import { updateContract } from "../service"
import { GeneralContractListItem } from "./general-contracts-table-columns"
import { useSession } from "next-auth/react"
const updateContractSchema = z.object({
  category: z.string().min(1, "계약구분을 선택해주세요"),
  type: z.string().min(1, "계약종류를 선택해주세요"),
  executionMethod: z.string().min(1, "체결방식을 선택해주세요"),
  name: z.string().min(1, "계약명을 입력해주세요"),
  startDate: z.string().optional(), // AD, LO, OF 계약인 경우 선택사항
  endDate: z.string().optional(), // AD, LO, OF 계약인 경우 선택사항
  validityEndDate: z.string().optional(), // LO 계약인 경우에만 필수값으로 처리
  contractScope: z.string().min(1, "계약확정범위를 선택해주세요"),
  notes: z.string().optional(),
  linkedRfqOrItb: z.string().optional(),
  linkedPoNumber: z.string().optional(),
  linkedBidNumber: z.string().optional(),
}).superRefine((data, ctx) => {
  // AD, LO, OF 계약이 아닌 경우 계약기간 필수값 체크
  if (!['AD', 'LO', 'OF'].includes(data.type)) {
    if (!data.startDate) {
      ctx.addIssue({
        code: z.ZodIssueCode.custom,
        message: "계약시작일을 선택해주세요",
        path: ["startDate"],
      })
    }
    if (!data.endDate) {
      ctx.addIssue({
        code: z.ZodIssueCode.custom,
        message: "계약종료일을 선택해주세요",
        path: ["endDate"],
      })
    }
  }
  
  // LO 계약인 경우 계약체결유효기간 필수값 체크
  if (data.type === 'LO' && !data.validityEndDate) {
    ctx.addIssue({
      code: z.ZodIssueCode.custom,
      message: "LO 계약의 경우 계약체결유효기간은 필수 항목입니다",
      path: ["validityEndDate"],
    })
  }
})

type UpdateContractFormData = z.infer<typeof updateContractSchema>

interface GeneralContractUpdateSheetProps {
  contract: GeneralContractListItem | null
  open: boolean
  onOpenChange: (open: boolean) => void
  onSuccess?: () => void
}

export function GeneralContractUpdateSheet({
  contract,
  open,
  onOpenChange,
  onSuccess,
}: GeneralContractUpdateSheetProps) {
  const [isSubmitting, setIsSubmitting] = React.useState(false)
  const session = useSession()
  const userId = session.data?.user?.id ? Number(session.data.user.id) : null
  const form = useForm<UpdateContractFormData>({
    resolver: zodResolver(updateContractSchema),
    defaultValues: {
      category: "",
      type: "",
      executionMethod: "",
      name: "",
      startDate: "",
      endDate: "",
      validityEndDate: "",
      contractScope: "",
      notes: "",
      linkedRfqOrItb: "",
      linkedPoNumber: "",
      linkedBidNumber: "",
    },
  })

  // 계약확정범위에 따른 품목정보 필드 비활성화 여부
  const watchedContractScope = form.watch("contractScope")
  const isItemsDisabled = watchedContractScope === '단가' || watchedContractScope === '물량(실적)'

  // 계약 데이터가 변경될 때 폼 초기화
  React.useEffect(() => {
    if (contract) {
      console.log("Loading contract data:", contract)
      const formData = {
        category: contract.category || "",
        type: contract.type || "",
        executionMethod: contract.executionMethod || "",
        name: contract.name || "",
        startDate: contract.startDate || "",
        endDate: contract.endDate || "",
        validityEndDate: contract.validityEndDate || "",
        contractScope: contract.contractScope || "",
        notes: contract.notes || "",
        linkedRfqOrItb: contract.linkedRfqOrItb || "",
        linkedPoNumber: contract.linkedPoNumber || "",
        linkedBidNumber: contract.linkedBidNumber || "",
      }
      console.log("Form data to reset:", formData)
      form.reset(formData)
    }
  }, [contract, form])

  const onSubmit = async (data: UpdateContractFormData) => {
    if (!contract) return

    try {
      setIsSubmitting(true)
      
      await updateContract(contract.id, {
        category: data.category,
        type: data.type,
        executionMethod: data.executionMethod,
        name: data.name,
        startDate: data.startDate,
        endDate: data.endDate,
        validityEndDate: data.validityEndDate,
        contractScope: data.contractScope,
        notes: data.notes,
        linkedRfqOrItb: data.linkedRfqOrItb,
        linkedPoNumber: data.linkedPoNumber,
        linkedBidNumber: data.linkedBidNumber,
        vendorId: contract.vendorId,
        lastUpdatedById: userId,
      })

      toast.success("계약 정보가 성공적으로 수정되었습니다.")
      onOpenChange(false)
      onSuccess?.()
    } catch (error) {
      console.error("Error updating contract:", error)
      toast.error("계약 정보 수정 중 오류가 발생했습니다.")
    } finally {
      setIsSubmitting(false)
    }
  }

  return (
    <Sheet open={open} onOpenChange={onOpenChange}>
      <SheetContent className="w-[800px] sm:max-w-[800px] flex flex-col" style={{width: 800, maxWidth: 800, height: '100vh'}}>
        <SheetHeader className="flex-shrink-0">
          <SheetTitle>계약 정보 수정</SheetTitle>
          <SheetDescription>
            계약의 기본 정보를 수정합니다. 변경사항은 즉시 저장됩니다.
          </SheetDescription>
        </SheetHeader>

        <div className="flex-1 overflow-y-auto min-h-0">
          <Form {...form}>
            <form onSubmit={form.handleSubmit(onSubmit)} className="space-y-6 h-full">
              <div className="grid gap-4 py-4">
              {/* 계약구분 */}
              <FormField
                control={form.control}
                name="category"
                render={({ field }) => (
                  <FormItem>
                    <FormLabel>계약구분 *</FormLabel>
                    <Select onValueChange={field.onChange} value={field.value}>
                      <FormControl>
                        <SelectTrigger>
                          <SelectValue placeholder="계약구분을 선택하세요" />
                        </SelectTrigger>
                      </FormControl>
                      <SelectContent>
                        {GENERAL_CONTRACT_CATEGORIES.map((category) => {
                          const categoryLabels = {
                            'unit_price': '단가계약',
                            'general': '일반계약',
                            'sale': '매각계약'
                          }
                          return (
                          <SelectItem key={category} value={category}>
                            {category} - {categoryLabels[category as keyof typeof categoryLabels]}
                          </SelectItem>
                        )})}
                      </SelectContent>
                    </Select>
                    <FormMessage />
                  </FormItem>
                )}
              />

              {/* 계약종류 */}
              <FormField
                control={form.control}
                name="type"
                render={({ field }) => (
                  <FormItem>
                    <FormLabel>계약종류 *</FormLabel>
                    <Select onValueChange={field.onChange} value={field.value}>
                      <FormControl>
                        <SelectTrigger>
                          <SelectValue placeholder="계약종류를 선택하세요" />
                        </SelectTrigger>
                      </FormControl>
                      <SelectContent>
                        {GENERAL_CONTRACT_TYPES.map((type) => {
                          const typeLabels = {
                            'UP': '자재단가계약',
                            'LE': '임대차계약',
                            'IL': '개별운송계약',
                            'AL': '연간운송계약',
                            'OS': '외주용역계약',
                            'OW': '도급계약',
                            'LO': 'LOI',
                            'FA': 'FA',
                            'SC': '납품합의계약',
                            'OF': '클레임상계계약',
                            'AW': '사전작업합의',
                            'AD': '사전납품합의',
                            'SG': '임치(물품보관)계약',
                            'SR': '폐기물매각계약'
                          }
                          return (
                          <SelectItem key={type} value={type}>
                            {type} - {typeLabels[type as keyof typeof typeLabels]}
                          </SelectItem>
                        )})}
                      </SelectContent>
                    </Select>
                    <FormMessage />
                  </FormItem>
                )}
              />

              {/* 체결방식 */}
              <FormField
                control={form.control}
                name="executionMethod"
                render={({ field }) => (
                  <FormItem>
                    <FormLabel>체결방식 *</FormLabel>
                    <Select onValueChange={field.onChange} value={field.value}>
                      <FormControl>
                        <SelectTrigger>
                          <SelectValue placeholder="체결방식을 선택하세요" />
                        </SelectTrigger>
                      </FormControl>
                      <SelectContent>
                        {GENERAL_EXECUTION_METHODS.map((method) => {
                          const methodLabels = {
                            '전자계약': '전자계약',
                            '오프라인계약': '오프라인계약'
                          }
                          return (
                          <SelectItem key={method} value={method}>
                            {method} - {methodLabels[method as keyof typeof methodLabels]}
                          </SelectItem>
                        )})}
                      </SelectContent>
                    </Select>
                    <FormMessage />
                  </FormItem>
                )}
              />

              {/* 계약명 */}
              <FormField
                control={form.control}
                name="name"
                render={({ field }) => (
                  <FormItem>
                    <FormLabel>계약명 *</FormLabel>
                    <FormControl>
                      <Input placeholder="계약명을 입력하세요" {...field} />
                    </FormControl>
                    <FormMessage />
                  </FormItem>
                )}
              />

              {/* 계약시작일 */}
              <FormField
                control={form.control}
                name="startDate"
                render={({ field }) => (
                  <FormItem>
                    <FormLabel>
                      계약시작일
                      {!['AD', 'LO', 'OF'].includes(form.watch('type')) && <span className="text-red-600 ml-1">*</span>}
                    </FormLabel>
                    <FormControl>
                      <Input type="date" {...field} />
                    </FormControl>
                    <FormMessage />
                  </FormItem>
                )}
              />

              {/* 계약종료일 */}
              <FormField
                control={form.control}
                name="endDate"
                render={({ field }) => (
                  <FormItem>
                    <FormLabel>
                      계약종료일
                      {!['AD', 'LO', 'OF'].includes(form.watch('type')) && <span className="text-red-600 ml-1">*</span>}
                    </FormLabel>
                    <FormControl>
                      <Input type="date" {...field} />
                    </FormControl>
                    <FormMessage />
                  </FormItem>
                )}
              />

              {/* 유효기간종료일 */}
              <FormField
                control={form.control}
                name="validityEndDate"
                render={({ field }) => (
                  <FormItem>
                    <FormLabel>
                      유효기간종료일
                      {form.watch('type') === 'LO' && <span className="text-red-600 ml-1">*</span>}
                    </FormLabel>
                    <FormControl>
                      <Input type="date" {...field} />
                    </FormControl>
                    <FormMessage />
                  </FormItem>
                )}
              />

              {/* 계약확정범위 */}
              <FormField
                control={form.control}
                name="contractScope"
                render={({ field }) => (
                  <FormItem>
                    <FormLabel>계약확정범위 *</FormLabel>
                    <Select onValueChange={field.onChange} value={field.value}>
                      <FormControl>
                        <SelectTrigger>
                          <SelectValue placeholder="계약확정범위를 선택하세요" />
                        </SelectTrigger>
                      </FormControl>
                      <SelectContent>
                        <SelectItem value="단가">단가</SelectItem>
                        <SelectItem value="금액">금액</SelectItem>
                        <SelectItem value="물량(실적)">물량(실적)</SelectItem>
                      </SelectContent>
                    </Select>
                    <FormMessage />
                    <p className="text-sm text-muted-foreground">
                      해당 계약으로 확정되는 범위를 선택하세요.
                    </p>
                  </FormItem>
                )}
              />

              {/* 비고 */}
              <FormField
                control={form.control}
                name="notes"
                render={({ field }) => (
                  <FormItem>
                    <FormLabel>비고</FormLabel>
                    <FormControl>
                      <Textarea
                        placeholder="비고를 입력하세요"
                        className="min-h-[100px]"
                        {...field}
                      />
                    </FormControl>
                    <FormMessage />
                  </FormItem>
                )}
              />
              </div>

              <SheetFooter className="flex-shrink-0 mt-6">
                <Button
                  type="button"
                  variant="outline"
                  onClick={() => onOpenChange(false)}
                  disabled={isSubmitting}
                >
                  취소
                </Button>
                <Button type="submit" disabled={isSubmitting}>
                  {isSubmitting ? "수정 중..." : "수정"}
                </Button>
              </SheetFooter>
            </form>
          </Form>
        </div>
      </SheetContent>
    </Sheet>
  )
}