diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-09 06:25:43 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-09 06:25:43 +0000 |
| commit | bcc7603a7aea83341728557445fb4bc78129cca2 (patch) | |
| tree | 85dd97e53508caaed3c10a9ef94291156668e5ed /lib/payment-terms/table/payment-terms-add-dialog.tsx | |
| parent | ccca806e803baf87bbc97cb2c49b0065673b7a6b (diff) | |
(최겸) 구매 결제 조건 -> 지급 조건 용어 변경
Diffstat (limited to 'lib/payment-terms/table/payment-terms-add-dialog.tsx')
| -rw-r--r-- | lib/payment-terms/table/payment-terms-add-dialog.tsx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/payment-terms/table/payment-terms-add-dialog.tsx b/lib/payment-terms/table/payment-terms-add-dialog.tsx index 49819f87..bfcd7b4e 100644 --- a/lib/payment-terms/table/payment-terms-add-dialog.tsx +++ b/lib/payment-terms/table/payment-terms-add-dialog.tsx @@ -70,7 +70,7 @@ export function PaymentTermsAddDialog({ onSuccess }: PaymentTermsAddDialogProps) try { const result = await createPaymentTerm(data); if (result.data) { - toast.success("결제 조건이 성공적으로 추가되었습니다."); + toast.success("지급 조건이 성공적으로 추가되었습니다."); form.reset(); setOpen(false); if (onSuccess) { @@ -80,8 +80,8 @@ export function PaymentTermsAddDialog({ onSuccess }: PaymentTermsAddDialogProps) toast.error(result.error || "생성 중 오류가 발생했습니다."); } } catch (error) { - console.error("결제 조건 생성 오류:", error); - toast.error("결제 조건 생성에 실패했습니다."); + console.error("지급 조건 생성 오류:", error); + toast.error("지급 조건 생성에 실패했습니다."); } finally { setIsLoading(false); } @@ -92,14 +92,14 @@ export function PaymentTermsAddDialog({ onSuccess }: PaymentTermsAddDialogProps) <DialogTrigger asChild> <Button variant="outline" size="sm"> <Plus className="mr-2 h-4 w-4" /> - 결제 조건 추가 + 지급 조건 추가 </Button> </DialogTrigger> <DialogContent className="max-w-md"> <DialogHeader> - <DialogTitle>새 결제 조건 추가</DialogTitle> + <DialogTitle>새 지급 조건 추가</DialogTitle> <DialogDescription> - 새로운 결제 조건을 추가합니다. 필수 정보를 입력해주세요. + 새로운 지급 조건을 추가합니다. 필수 정보를 입력해주세요. <span className="text-red-500 mt-1 block text-sm">* 표시된 항목은 필수 입력사항입니다.</span> </DialogDescription> </DialogHeader> @@ -115,7 +115,7 @@ export function PaymentTermsAddDialog({ onSuccess }: PaymentTermsAddDialogProps) 코드 <span className="text-red-500">*</span> </FormLabel> <FormControl> - <Input placeholder="결제 조건 코드" {...field} /> + <Input placeholder="지급 조건 코드" {...field} /> </FormControl> <FormMessage /> </FormItem> @@ -131,7 +131,7 @@ export function PaymentTermsAddDialog({ onSuccess }: PaymentTermsAddDialogProps) 설명 <span className="text-red-500">*</span> </FormLabel> <FormControl> - <Input placeholder="결제 조건 설명" {...field} /> + <Input placeholder="지급 조건 설명" {...field} /> </FormControl> <FormMessage /> </FormItem> |
