From 1dc24d48e52f2e490f5603ceb02842586ecae533 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Thu, 24 Jul 2025 11:06:32 +0000 Subject: (대표님) 정기평가 피드백 반영, 설계 피드백 반영, (최겸) 기술영업 피드백 반영 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/items-tech/table/top/import-item-handler.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/items-tech/table/top/import-item-handler.tsx') diff --git a/lib/items-tech/table/top/import-item-handler.tsx b/lib/items-tech/table/top/import-item-handler.tsx index 4f34cff2..0197d826 100644 --- a/lib/items-tech/table/top/import-item-handler.tsx +++ b/lib/items-tech/table/top/import-item-handler.tsx @@ -4,7 +4,7 @@ import { z } from "zod" import { createOffshoreTopItem } from "../../service" // 해양 TOP 기능(공종) 유형 enum -const TOP_WORK_TYPES = ["TM", "TS", "TE", "TP"] as const; +const TOP_WORK_TYPES = ["TM", "TS", "TE", "TP", "TA"] as const; // 아이템 데이터 검증을 위한 Zod 스키마 const itemSchema = z.object({ @@ -92,7 +92,7 @@ export async function processTopFileImport( // 해양 TOP 아이템 생성 const result = await createOffshoreTopItem({ itemCode: cleanedRow.itemCode, - workType: cleanedRow.workType as "TM" | "TS" | "TE" | "TP", + workType: cleanedRow.workType as "TM" | "TS" | "TE" | "TP" | "TA", itemList: cleanedRow.itemList, subItemList: cleanedRow.subItemList, }); -- cgit v1.2.3