summaryrefslogtreecommitdiff
path: root/lib/rfq-last/vendor
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-09-30 10:08:53 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-09-30 10:08:53 +0000
commit2c02afd48a4d9276a4f5c132e088540a578d0972 (patch)
treee5efdd3f48fad33681c139a4c58481f4514fb38e /lib/rfq-last/vendor
parent19794b32a6e3285fdeda7519ededdce451966f3d (diff)
(대표님) 폼리스트, spreadjs 관련 변경사항, 벤더문서 뷰 쿼리 수정, 이메일 템플릿 추가 등
Diffstat (limited to 'lib/rfq-last/vendor')
-rw-r--r--lib/rfq-last/vendor/rfq-vendor-table.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/rfq-last/vendor/rfq-vendor-table.tsx b/lib/rfq-last/vendor/rfq-vendor-table.tsx
index 89a42602..17433773 100644
--- a/lib/rfq-last/vendor/rfq-vendor-table.tsx
+++ b/lib/rfq-last/vendor/rfq-vendor-table.tsx
@@ -360,7 +360,7 @@ export function RfqVendorTable({
// 선택된 벤더 ID들 추출
const selectedVendorIds = rfqCode?.startsWith("I") ? selectedRows
- .filter(v => v.shortList)
+ // .filter(v => v.shortList)
.map(row => row.vendorId)
.filter(id => id != null) :
selectedRows
@@ -1218,7 +1218,7 @@ export function RfqVendorTable({
},
size: 80,
},
- ...(rfqCode?.startsWith("I") ? [{
+ ...(!rfqCode?.startsWith("F") ? [{
accessorKey: "shortList",
filterFn: createFilterFn("boolean"), // boolean으로 변경
header: ({ column }) => <ClientDataTableColumnHeaderSimple column={column} title="Short List" />,
@@ -1482,7 +1482,7 @@ export function RfqVendorTable({
label: "스페어파트",
type: "boolean"
},
- ...(rfqCode?.startsWith("I") ? [{
+ ...(!rfqCode?.startsWith("I") ? [{
id: "shortList",
label: "Short List",
type: "select",
@@ -1577,7 +1577,7 @@ export function RfqVendorTable({
</Button>
{/* Short List 확정 버튼 */}
- {rfqCode?.startsWith("I") &&
+ {!rfqCode?.startsWith("F") &&
<Button
variant="outline"
size="sm"