diff options
| author | joonhoekim <26rote@gmail.com> | 2025-06-02 02:27:56 +0000 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-06-02 02:27:56 +0000 |
| commit | e5f4a774fabc17b5b18d50c96f5695d89dcabc86 (patch) | |
| tree | b1ef756d93f8e8d1d67998a5694aab379e34b5bc /lib/items-tech | |
| parent | 37611339fea096e47aaa42311a13a6313b4200db (diff) | |
(김준회) 기술영업 조선 RFQ 에러 처리 및 필터와 소팅 처리
Diffstat (limited to 'lib/items-tech')
| -rw-r--r-- | lib/items-tech/service.ts | 5 |
1 files changed, 0 insertions, 5 deletions
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[],
|
