diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-06-23 09:03:29 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-06-23 09:03:29 +0000 |
| commit | 95866a13ba4e1c235373834460aa284b763fe0d9 (patch) | |
| tree | 47a7a13d6e20907adbcbe04080f7c0aa3c7aea7f /lib/techsales-rfq/table/create-rfq-top-dialog.tsx | |
| parent | 5c9b39eb011763a7491b3e8542de9f6d4976dd65 (diff) | |
(최겸) 기술영업 RFQ 개발(0620 요구사항, 첨부파일, REV 등)
Diffstat (limited to 'lib/techsales-rfq/table/create-rfq-top-dialog.tsx')
| -rw-r--r-- | lib/techsales-rfq/table/create-rfq-top-dialog.tsx | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/lib/techsales-rfq/table/create-rfq-top-dialog.tsx b/lib/techsales-rfq/table/create-rfq-top-dialog.tsx index 70f56ebd..6536e230 100644 --- a/lib/techsales-rfq/table/create-rfq-top-dialog.tsx +++ b/lib/techsales-rfq/table/create-rfq-top-dialog.tsx @@ -3,7 +3,6 @@ import * as React from "react" import { toast } from "sonner" import { ArrowUpDown, CheckSquare, Plus, Search, Square, X, Loader2 } from "lucide-react" -import { Input } from "@/components/ui/input" import { Calendar } from "@/components/ui/calendar" import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover" import { CalendarIcon } from "lucide-react" @@ -43,6 +42,7 @@ import { } from "@/components/ui/dropdown-menu" import { cn } from "@/lib/utils" import { ScrollArea } from "@/components/ui/scroll-area" +import { Input } from "@/components/ui/input" // 공종 타입 import import { @@ -354,7 +354,24 @@ export function CreateTopRfqDialog({ onCreated }: CreateTopRfqDialogProps) { /> <Separator className="my-4" /> - + {/* RFQ 설명 */} + <FormField + control={form.control} + name="description" + render={({ field }) => ( + <FormItem> + <FormLabel>RFQ Title</FormLabel> + <FormControl> + <Input + placeholder="RFQ Title을 입력하세요 (선택사항)" + {...field} + /> + </FormControl> + <FormMessage /> + </FormItem> + )} + /> + <Separator className="my-4" /> {/* 마감일 설정 */} <FormField control={form.control} |
