diff options
| author | joonhoekim <26rote@gmail.com> | 2025-11-18 20:50:39 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-11-18 20:50:39 +0900 |
| commit | 8070b9428918d9ae5e03ad17eef6d403d2a7aaba (patch) | |
| tree | ae61ea52ae3dae5f2d084a16986b9733a4140047 /lib/rfq-last | |
| parent | 8dba4d53d763bf9e1302a84a8fc65727425219ee (diff) | |
| parent | be5d5ab488ae875e7c56306403aba923e1784021 (diff) | |
Merge branch 'dujinkim' of https://github.com/DTS-Development/SHI_EVCP into dujinkim
Diffstat (limited to 'lib/rfq-last')
| -rw-r--r-- | lib/rfq-last/shared/rfq-items-dialog.tsx | 4 | ||||
| -rw-r--r-- | lib/rfq-last/vendor-response/editor/vendor-response-editor.tsx | 2 | ||||
| -rw-r--r-- | lib/rfq-last/vendor/rfq-vendor-table.tsx | 10 |
3 files changed, 7 insertions, 9 deletions
diff --git a/lib/rfq-last/shared/rfq-items-dialog.tsx b/lib/rfq-last/shared/rfq-items-dialog.tsx index f3095c98..e4f71e79 100644 --- a/lib/rfq-last/shared/rfq-items-dialog.tsx +++ b/lib/rfq-last/shared/rfq-items-dialog.tsx @@ -328,11 +328,11 @@ export function RfqItemsDialog({ <TableCell> <div className="flex flex-col items-center gap-1"> <span className="text-xs font-mono">#{index + 1}</span> - {item.majorYn && ( + {/* {item.majorYn && ( <Badge variant="default" className="text-xs px-1 py-0"> 주요 </Badge> - )} + )} */} </div> </TableCell> <TableCell> diff --git a/lib/rfq-last/vendor-response/editor/vendor-response-editor.tsx b/lib/rfq-last/vendor-response/editor/vendor-response-editor.tsx index abd2b516..8c70b8dd 100644 --- a/lib/rfq-last/vendor-response/editor/vendor-response-editor.tsx +++ b/lib/rfq-last/vendor-response/editor/vendor-response-editor.tsx @@ -322,7 +322,7 @@ export default function VendorResponseEditor({ if (errors.quotationItems) { toast.error("견적 품목 정보를 확인해주세요. 모든 품목의 단가와 총액을 입력해야 합니다.") } else { - toast.error("입력 정보를 확인해주세요.") + toast.error("기본계약 또는 상업조건 정보를 확인해주세요.") } } } diff --git a/lib/rfq-last/vendor/rfq-vendor-table.tsx b/lib/rfq-last/vendor/rfq-vendor-table.tsx index 2ee2cb73..577ae492 100644 --- a/lib/rfq-last/vendor/rfq-vendor-table.tsx +++ b/lib/rfq-last/vendor/rfq-vendor-table.tsx @@ -1539,10 +1539,10 @@ export function RfqVendorTable({ )} {/* 기본계약 수정 메뉴 추가 */} - <DropdownMenuItem onClick={() => handleAction("edit-contract", vendor)}> + {/* <DropdownMenuItem onClick={() => handleAction("edit-contract", vendor)}> <FileText className="mr-2 h-4 w-4" /> 기본계약 수정 - </DropdownMenuItem> + </DropdownMenuItem> */} {emailSentAt && ( <> @@ -1824,9 +1824,6 @@ export function RfqVendorTable({ <Plus className="h-4 w-4 mr-2" /> 벤더 추가 </Button> - - {selectedRows.length > 0 && ( - <> {/* 정보 일괄 입력 버튼 - 취소되지 않은 벤더만 */} <Button variant="outline" @@ -1837,7 +1834,8 @@ export function RfqVendorTable({ <Settings2 className="h-4 w-4 mr-2" /> 협력업체 조건 설정 ({nonCancelledRows.length}) </Button> - + {selectedRows.length > 0 && ( + <> {/* RFQ 발송 버튼 - 취소되지 않은 벤더만 */} <Button variant="outline" |
