From e5f4a774fabc17b5b18d50c96f5695d89dcabc86 Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Mon, 2 Jun 2025 02:27:56 +0000 Subject: (김준회) 기술영업 조선 RFQ 에러 처리 및 필터와 소팅 처리 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/items-tech/service.ts | 5 ----- 1 file changed, 5 deletions(-) (limited to 'lib/items-tech/service.ts') diff --git a/lib/items-tech/service.ts b/lib/items-tech/service.ts index 158fce13..a14afa14 100644 --- a/lib/items-tech/service.ts +++ b/lib/items-tech/service.ts @@ -1089,8 +1089,6 @@ export type WorkType = '기장' | '전장' | '선실' | '배관' | '철의' export interface ShipbuildingItem { id: number itemCode: string - itemName: string - description: string | null workType: WorkType itemList: string | null // 실제 아이템명 shipTypes: string @@ -1251,8 +1249,6 @@ export async function getAllShipbuildingItemsForCache() { .select({ id: itemShipbuilding.id, itemCode: itemShipbuilding.itemCode, - itemName: items.itemName, - description: items.description, workType: itemShipbuilding.workType, itemList: itemShipbuilding.itemList, shipTypes: itemShipbuilding.shipTypes, @@ -1260,7 +1256,6 @@ export async function getAllShipbuildingItemsForCache() { updatedAt: itemShipbuilding.updatedAt, }) .from(itemShipbuilding) - .leftJoin(items, eq(itemShipbuilding.itemCode, items.itemCode)) return { data: result as ShipbuildingItem[], -- cgit v1.2.3