diff --git a/app/Console/Commands/MapItemsToProcesses.php b/app/Console/Commands/MapItemsToProcesses.php index 5458032..d54ef2d 100644 --- a/app/Console/Commands/MapItemsToProcesses.php +++ b/app/Console/Commands/MapItemsToProcesses.php @@ -41,31 +41,37 @@ class MapItemsToProcesses extends Command * - G: 연기차단재 * - L: L-Bar */ + /** + * FG(완제품), RM(원자재) 제외 - 공정별 생산 품목만 매핑 + * EST-INSPECTION(검사비), EST-MOTOR/EST-CTRL(구매품)도 제외 + */ + private array $globalExcludes = ['FG-%', 'RM-%', 'EST-INSPECTION']; + private array $mappingRules = [ 'P-001' => [ 'name' => '슬랫', - 'code_patterns' => [], - 'name_keywords' => ['철재용', '철재', '슬랫'], - 'name_excludes' => ['스크린', '가이드레일', '하단마감', '연기차단', '케이스'], // 재고생산 품목 제외 + 'code_patterns' => ['EST-RAW-슬랫-%'], // 슬랫 원자재 (방화/방범/조인트바) + 'name_keywords' => ['슬랫'], + 'name_excludes' => ['스크린', '가이드레일', '하단마감', '연기차단', '케이스'], ], 'P-002' => [ 'name' => '스크린', - 'code_patterns' => [], + 'code_patterns' => ['EST-RAW-스크린-%'], // 스크린 원자재 (실리카/와이어 등) 'name_keywords' => ['스크린용', '스크린', '원단', '실리카', '방충', '와이어'], - 'name_excludes' => ['가이드레일', '하단마감', '연기차단', '케이스'], // 재고생산 품목 제외 + 'name_excludes' => ['가이드레일', '하단마감', '연기차단', '케이스'], ], 'P-003' => [ 'name' => '절곡', 'code_patterns' => ['BD-%'], // BD 코드는 절곡 - 'name_keywords' => ['절곡'], // 절곡 키워드만 (나머지는 P-004로) + 'name_keywords' => ['절곡', '연기차단재'], // 연기차단재는 절곡 공정에서 조립 'name_excludes' => [], ], 'P-004' => [ 'name' => '재고생산', 'code_patterns' => ['PT-%'], // PT 코드는 재고생산 부품 - 'name_keywords' => ['가이드레일', '케이스', '연기차단', 'L-Bar', 'L-BAR', 'LBar', '하단마감', '린텔', '하장바'], + 'name_keywords' => ['가이드레일', '케이스', 'L-Bar', 'L-BAR', 'LBar', '하단마감', '린텔', '하장바', '환봉', '감기샤프트', '각파이프', '앵글'], 'name_excludes' => [], - 'code_excludes' => ['BD-%'], // BD 코드는 P-003으로 + 'code_excludes' => ['BD-%', 'EST-SMOKE-%'], // BD는 P-003, EST-SMOKE는 P-003 ], ]; @@ -175,7 +181,7 @@ public function handle(): int // 미분류 샘플 if ($unmappedItems->isNotEmpty()) { - $this->info("[미분류] 샘플 (최대 10개):"); + $this->info('[미분류] 샘플 (최대 10개):'); foreach ($unmappedItems->take(10) as $item) { $this->line(" - {$item->code}: {$item->name}"); } @@ -233,28 +239,78 @@ private function classifyItem(Item $item): ?string $code = $item->code ?? ''; $name = $item->name ?? ''; - // B. BD 코드 → P-003 절곡 (최우선) + // 0. 글로벌 제외 (FG 완제품, RM 원자재, EST-INSPECTION 서비스) + foreach ($this->globalExcludes as $excludePattern) { + $prefix = rtrim($excludePattern, '-%'); + if (str_starts_with($code, $prefix)) { + return null; + } + } + + // 1. 코드 패턴 우선 매핑 (정확한 매칭) + // EST-RAW-슬랫-* → P-001 + if (str_starts_with($code, 'EST-RAW-슬랫-')) { + return 'P-001'; + } + + // EST-RAW-스크린-* → P-002 + if (str_starts_with($code, 'EST-RAW-스크린-')) { + return 'P-002'; + } + + // BD-* → P-003 절곡 if (str_starts_with($code, 'BD-')) { return 'P-003'; } - // C. PT 코드 → P-004 재고생산 (코드 기반 우선) + // EST-SMOKE-* → P-003 절곡 (연기차단재는 절곡 공정에서 조립) + if (str_starts_with($code, 'EST-SMOKE-')) { + return 'P-003'; + } + + // PT-* → P-004 재고생산 if (str_starts_with($code, 'PT-')) { return 'P-004'; } - // C. P-004 재고생산 키워드 체크 (가이드레일, 케이스, 연기차단재, L-Bar, 하단마감, 린텔) + // EST-MOTOR/EST-CTRL → 구매품, 공정 없음 + if (str_starts_with($code, 'EST-MOTOR-') || str_starts_with($code, 'EST-CTRL-')) { + return null; + } + + // EST-SHAFT/EST-PIPE/EST-ANGLE → P-004 재고생산 (조달 품목) + if (str_starts_with($code, 'EST-SHAFT-') || str_starts_with($code, 'EST-PIPE-') || str_starts_with($code, 'EST-ANGLE-')) { + return 'P-004'; + } + + // 2. P-004 재고생산 키워드 체크 foreach ($this->mappingRules['P-004']['name_keywords'] as $keyword) { if (mb_stripos($name, $keyword) !== false) { - return 'P-004'; + // code_excludes 체크 + $excluded = false; + foreach ($this->mappingRules['P-004']['code_excludes'] ?? [] as $excludePattern) { + $prefix = rtrim($excludePattern, '-%'); + if (str_starts_with($code, $prefix)) { + $excluded = true; + break; + } + } + if (! $excluded) { + return 'P-004'; + } } } - // A. 품목명 키워드 기반 분류 - // P-002 스크린 먼저 체크 (스크린용, 스크린 키워드) + // 3. P-003 절곡 키워드 체크 + foreach ($this->mappingRules['P-003']['name_keywords'] as $keyword) { + if (mb_stripos($name, $keyword) !== false) { + return 'P-003'; + } + } + + // 4. P-002 스크린 키워드 체크 foreach ($this->mappingRules['P-002']['name_keywords'] as $keyword) { if (mb_stripos($name, $keyword) !== false) { - // 재고생산 품목 제외 $excluded = false; foreach ($this->mappingRules['P-002']['name_excludes'] as $exclude) { if (mb_stripos($name, $exclude) !== false) { @@ -268,10 +324,9 @@ private function classifyItem(Item $item): ?string } } - // P-001 슬랫 체크 (철재용, 철재, 슬랫 키워드) + // 5. P-001 슬랫 키워드 체크 foreach ($this->mappingRules['P-001']['name_keywords'] as $keyword) { if (mb_stripos($name, $keyword) !== false) { - // 재고생산 품목 제외 $excluded = false; foreach ($this->mappingRules['P-001']['name_excludes'] as $exclude) { if (mb_stripos($name, $exclude) !== false) { @@ -285,13 +340,6 @@ private function classifyItem(Item $item): ?string } } - // P-003 절곡 키워드 체크 (BD 코드 외에 키워드로도 분류) - foreach ($this->mappingRules['P-003']['name_keywords'] as $keyword) { - if (mb_stripos($name, $keyword) !== false) { - return 'P-003'; - } - } - return null; } } diff --git a/app/Http/Controllers/Api/V1/ItemsBomController.php b/app/Http/Controllers/Api/V1/ItemsBomController.php index c021f6c..de21742 100644 --- a/app/Http/Controllers/Api/V1/ItemsBomController.php +++ b/app/Http/Controllers/Api/V1/ItemsBomController.php @@ -98,6 +98,22 @@ public function store(int $id, Request $request) return ApiResponse::handle(function () use ($id, $request) { $item = $this->getItem($id); $inputItems = $request->input('items', []); + $tenantId = app('tenant_id'); + + // child_item_id 존재 검증 + $childIds = collect($inputItems)->pluck('child_item_id')->filter()->unique()->values()->toArray(); + if (! empty($childIds)) { + $validIds = Item::where('tenant_id', $tenantId) + ->whereIn('id', $childIds) + ->pluck('id') + ->toArray(); + $invalidIds = array_diff($childIds, $validIds); + if (! empty($invalidIds)) { + throw new \InvalidArgumentException( + __('error.bom.invalid_child_items', ['ids' => implode(', ', $invalidIds)]) + ); + } + } $existingBom = $item->bom ?? []; $existingMap = collect($existingBom)->keyBy('child_item_id')->toArray(); @@ -273,6 +289,22 @@ public function replace(int $id, Request $request) return ApiResponse::handle(function () use ($id, $request) { $item = $this->getItem($id); $inputItems = $request->input('items', []); + $tenantId = app('tenant_id'); + + // child_item_id 존재 검증 + $childIds = collect($inputItems)->pluck('child_item_id')->filter()->unique()->values()->toArray(); + if (! empty($childIds)) { + $validIds = Item::where('tenant_id', $tenantId) + ->whereIn('id', $childIds) + ->pluck('id') + ->toArray(); + $invalidIds = array_diff($childIds, $validIds); + if (! empty($invalidIds)) { + throw new \InvalidArgumentException( + __('error.bom.invalid_child_items', ['ids' => implode(', ', $invalidIds)]) + ); + } + } $newBom = []; foreach ($inputItems as $inputItem) { diff --git a/app/Services/Quote/FormulaEvaluatorService.php b/app/Services/Quote/FormulaEvaluatorService.php index 0c6c8c1..5ded0b6 100644 --- a/app/Services/Quote/FormulaEvaluatorService.php +++ b/app/Services/Quote/FormulaEvaluatorService.php @@ -1587,7 +1587,14 @@ private function calculateKyungdongBom( $H0 = (float) ($inputVariables['H0'] ?? 0); $QTY = (int) ($inputVariables['QTY'] ?? 1); $bracketInch = $inputVariables['bracket_inch'] ?? '5'; - $productType = $inputVariables['product_type'] ?? 'screen'; + // product_type: 프론트 입력값 우선, 없으면 FG item_category에서 자동 추론 + $finishedGoods = $this->getItemDetails($finishedGoodsCode, $tenantId); + $itemCategory = $finishedGoods['item_category'] ?? null; + $productType = $inputVariables['product_type'] ?? match (true) { + $itemCategory === '철재' => 'steel', + str_contains($itemCategory ?? '', '슬랫') => 'slat', + default => 'screen', + }; $this->addDebugStep(1, '입력값수집', [ 'formulas' => [ @@ -1602,9 +1609,7 @@ private function calculateKyungdongBom( ], ]); - // Step 2: 완제품 조회 (경동 전용 계산은 완제품 없이도 동작) - $finishedGoods = $this->getItemDetails($finishedGoodsCode, $tenantId); - + // Step 2: 완제품 정보 활용 (Step 1에서 이미 조회됨) if ($finishedGoods) { $this->addDebugStep(2, '완제품선택', [ 'code' => $finishedGoods['code'], @@ -1672,6 +1677,12 @@ private function calculateKyungdongBom( $finishingType = $inputVariables['finishing_type'] ?? 'SUS'; $installationType = $inputVariables['installation_type'] ?? '벽면형'; + // 모터 전압: 프론트 MP(single/three) → motor_voltage(220V/380V) 매핑 + $motorVoltage = $inputVariables['motor_voltage'] ?? match ($inputVariables['MP'] ?? 'single') { + 'three' => '380V', + default => '220V', + }; + $calculatedVariables = array_merge($inputVariables, [ 'W0' => $W0, 'H0' => $H0, @@ -1687,6 +1698,7 @@ private function calculateKyungdongBom( 'product_model' => $productModel, 'finishing_type' => $finishingType, 'installation_type' => $installationType, + 'motor_voltage' => $motorVoltage, ]); $this->addDebugStep(3, '변수계산', [ diff --git a/app/Services/Quote/Handlers/KyungdongFormulaHandler.php b/app/Services/Quote/Handlers/KyungdongFormulaHandler.php index 2b1b3c0..e0b74bc 100644 --- a/app/Services/Quote/Handlers/KyungdongFormulaHandler.php +++ b/app/Services/Quote/Handlers/KyungdongFormulaHandler.php @@ -22,49 +22,12 @@ public function __construct(?EstimatePriceService $priceService = null) } // ========================================================================= - // 아이템 매핑 헬퍼 메서드 및 상수 + // 아이템 매핑 헬퍼 메서드 // ========================================================================= - /** - * 고정 매핑 아이템 코드 → ID 테이블 - * items master에서 조회한 고정 값들 - */ - private const FIXED_ITEM_MAPPINGS = [ - // 연기차단재 - 'EST-SMOKE-케이스용' => 14912, - 'EST-SMOKE-레일용' => 14911, - // 하장바 - '00035' => 14158, // SUS - '00036' => 14159, // EGI - // 보강평철 - 'BD-보강평철-50' => 14790, - // 무게평철12T (평철12T와 동일) - '00021' => 14147, - // 환봉 (파이별) - '90201' => 14407, // 30파이 - '90202' => 14408, // 35파이 - '90203' => 14409, // 45파이 - '90204' => 14410, // 50파이 - // 조인트바 - '800361' => 14733, - // 검사비 - 'EST-INSPECTION' => 14913, - // 제어기 - 'EST-CTRL-노출형' => 14861, - 'EST-CTRL-매립형' => 14862, - 'EST-CTRL-뒷박스' => 14863, - // 파이프 - 'EST-PIPE-1.4-3000' => 14900, - 'EST-PIPE-1.4-6000' => 14901, - // 모터받침 앵글 - 'EST-ANGLE-BRACKET-스크린용' => 14907, - 'EST-ANGLE-BRACKET-철제300K' => 14908, - 'EST-ANGLE-BRACKET-철제400K' => 14909, - 'EST-ANGLE-BRACKET-철제800K' => 14910, - ]; - /** * items master에서 코드로 아이템 조회 (캐싱 적용, id + name) + * seeder 재실행 시 ID가 변경될 수 있으므로 항상 DB에서 동적 조회 * * @param string $code 아이템 코드 * @return array{id: int|null, name: string|null} @@ -76,16 +39,6 @@ private function lookupItem(string $code): array return $cache[$code]; } - // 1. 고정 매핑에 ID만 있는 경우 → DB에서 name 조회 - if (isset(self::FIXED_ITEM_MAPPINGS[$code])) { - $fixedId = self::FIXED_ITEM_MAPPINGS[$code]; - $name = \App\Models\Items\Item::where('id', $fixedId)->value('name'); - $cache[$code] = ['id' => $fixedId, 'name' => $name]; - - return $cache[$code]; - } - - // 2. DB에서 동적 조회 (BD-*, EST-* 패턴) $item = \App\Models\Items\Item::where('tenant_id', self::TENANT_ID) ->where('code', $code) ->first(['id', 'name']); @@ -968,8 +921,9 @@ public function calculatePartItems(array $params): array ], $itemCode); } - // 5. 조인트바 (슬랫 전용, 5130: price × col76, QTY 미적용) - if ($productType === 'slat') { + // 5. 조인트바 (슬랫/철재 공통, 5130: price × col76, QTY 미적용) + // 5130 레거시: 철재(KQTS01)도 슬랫 공정에서 조인트바 사용 + if (in_array($productType, ['slat', 'steel'])) { $jointBarQty = (int) ($params['joint_bar_qty'] ?? 0); if ($jointBarQty > 0) { $jointBarPrice = $this->getRawMaterialPrice('조인트바'); @@ -1044,20 +998,21 @@ public function calculateDynamicItems(array $inputs): array ], 'EST-INSPECTION'); } - // 1. 주자재 (스크린 또는 슬랫) - if ($productType === 'slat') { - $materialResult = $this->calculateSlatPrice($width, $height); - $materialName = '주자재(슬랫)'; - // 슬랫 타입에 따른 코드 (기본: 방화) - $slatType = $inputs['slat_type'] ?? '방화'; - $materialCode = "EST-RAW-슬랫-{$slatType}"; - } else { + // 1. 주자재 (스크린 = 실리카, 철재/슬랫 = EGI 코일 슬랫) + // 5130: KQTS01(철재)도 슬랫 공정에서 EGI 코일로 슬랫 생산 (viewSlatWork.php 참조) + if ($productType === 'screen') { $materialResult = $this->calculateScreenPrice($width, $height); $materialName = '주자재(스크린)'; - // 스크린 타입에 따른 코드 (기본: 실리카) $screenType = $inputs['screen_type'] ?? '실리카'; $materialCode = "EST-RAW-스크린-{$screenType}"; + } else { + // steel, slat 모두 슬랫(EGI 코일) 사용 + $materialResult = $this->calculateSlatPrice($width, $height); + $materialName = '주자재(슬랫)'; + $slatType = $inputs['slat_type'] ?? '방화'; + $materialCode = "EST-RAW-슬랫-{$slatType}"; } + $items[] = $this->withItemMapping([ 'category' => 'material', 'item_name' => $materialName, diff --git a/database/seeders/Kyungdong/KyungdongItemMasterSeeder.php b/database/seeders/Kyungdong/KyungdongItemMasterSeeder.php index f983354..dca264b 100644 --- a/database/seeders/Kyungdong/KyungdongItemMasterSeeder.php +++ b/database/seeders/Kyungdong/KyungdongItemMasterSeeder.php @@ -76,7 +76,7 @@ public function run(): void private function cleanup(): void { - $this->command->info('CLEANUP: tenant_id=' . $this->tenantId . ' 데이터 삭제'); + $this->command->info('CLEANUP: tenant_id='.$this->tenantId.' 데이터 삭제'); // FK 역순 삭제 // prices - tenant_id로 직접 삭제 @@ -100,7 +100,7 @@ private function cleanup(): void ->whereNotNull('parent_id') ->delete(); $c = DB::table('categories')->where('tenant_id', $this->tenantId)->delete(); - $this->command->info(" categories: " . count($catIds) . "건 삭제"); + $this->command->info(' categories: '.count($catIds).'건 삭제'); // entity_relationships $c = DB::table('entity_relationships')->where('tenant_id', $this->tenantId)->delete(); @@ -140,7 +140,7 @@ private function seedItemPages(): void $this->pageMap[$originalId] = $newId; } - $this->command->info(" item_pages: " . count($rows) . "건 삽입"); + $this->command->info(' item_pages: '.count($rows).'건 삽입'); } private function seedItemSections(): void @@ -158,7 +158,7 @@ private function seedItemSections(): void $this->sectionMap[$originalId] = $newId; } - $this->command->info(" item_sections: " . count($rows) . "건 삽입"); + $this->command->info(' item_sections: '.count($rows).'건 삽입'); } private function seedItemFields(): void @@ -176,7 +176,7 @@ private function seedItemFields(): void $this->fieldMap[$originalId] = $newId; } - $this->command->info(" item_fields: " . count($rows) . "건 삽입"); + $this->command->info(' item_fields: '.count($rows).'건 삽입'); } private function seedEntityRelationships(): void @@ -197,6 +197,7 @@ private function seedEntityRelationships(): void if ($data['parent_id'] === null || $data['child_id'] === null) { $this->command->warn(" entity_relationships: 매핑 실패 건 스킵 (parent_type={$row['parent_type']}, child_type={$row['child_type']})"); + continue; } @@ -314,6 +315,7 @@ private function seedCategories(): void if (! isset($this->categoryMap[$parentOriginalId])) { $nextRemaining[] = $row; + continue; } @@ -329,10 +331,10 @@ private function seedCategories(): void } if (! empty($remaining)) { - $this->command->warn(" categories: " . count($remaining) . "건 매핑 실패 (depth 초과)"); + $this->command->warn(' categories: '.count($remaining).'건 매핑 실패 (depth 초과)'); } - $this->command->info(" categories: " . count($this->categoryMap) . "건 삽입"); + $this->command->info(' categories: '.count($this->categoryMap).'건 삽입'); } private function seedItems(): void @@ -369,7 +371,57 @@ private function seedItems(): void ->pluck('id', 'code') ->toArray(); - $this->command->info(" items: {$total}건 삽입 (itemMap: " . count($this->itemMap) . "건)"); + $this->command->info(" items: {$total}건 삽입 (itemMap: ".count($this->itemMap).'건)'); + + // BOM의 child_item_code → child_item_id 변환 + $this->remapBomCodes(); + } + + /** + * BOM JSON의 child_item_code를 실제 child_item_id로 변환 + * + * items.json의 bom 필드가 child_item_code(품목코드) 기반으로 저장되어 있으므로, + * INSERT 후 itemMap(code→id)을 이용해 child_item_id로 교체한다. + */ + private function remapBomCodes(): void + { + $bomItems = DB::table('items') + ->where('tenant_id', $this->tenantId) + ->whereNotNull('bom') + ->get(['id', 'code', 'bom']); + + $updated = 0; + + foreach ($bomItems as $item) { + $bom = json_decode($item->bom, true); + if (! is_array($bom)) { + continue; + } + + $changed = false; + foreach ($bom as &$entry) { + // child_item_code → child_item_id 변환 + if (isset($entry['child_item_code'])) { + $code = $entry['child_item_code']; + if (isset($this->itemMap[$code])) { + $entry['child_item_id'] = $this->itemMap[$code]; + unset($entry['child_item_code']); + $changed = true; + } else { + $this->command->warn(" BOM 매핑 실패: {$item->code} → {$code} (품목 미존재)"); + } + } + } + unset($entry); + + if ($changed) { + DB::table('items')->where('id', $item->id) + ->update(['bom' => json_encode($bom, JSON_UNESCAPED_UNICODE)]); + $updated++; + } + } + + $this->command->info(" BOM code→id 매핑: {$updated}건 변환"); } // ────────────────────────────────────────────────────────────────── @@ -399,6 +451,7 @@ private function seedItemDetails(): void $code = $originalIdToCode[$originalItemId] ?? null; if ($code === null || ! isset($this->itemMap[$code])) { $skipped++; + continue; } @@ -417,7 +470,7 @@ private function seedItemDetails(): void } $this->expectedCounts['item_details'] = count($insertData); - $this->command->info(" item_details: " . count($insertData) . "건 삽입"); + $this->command->info(' item_details: '.count($insertData).'건 삽입'); } private function seedPrices(): void @@ -445,6 +498,7 @@ private function seedPrices(): void $code = $originalIdToCode[$originalItemId] ?? null; if ($code === null || ! isset($this->itemMap[$code])) { $skipped++; + continue; } @@ -463,7 +517,7 @@ private function seedPrices(): void } $this->expectedCounts['prices'] = count($insertData); - $this->command->info(" prices: " . count($insertData) . "건 삽입"); + $this->command->info(' prices: '.count($insertData).'건 삽입'); } // ────────────────────────────────────────────────────────────────── @@ -528,7 +582,7 @@ private function verifyRelationshipIntegrity(): void if ($orphans > 0) { $this->command->warn(" entity_relationships 참조 무결성: {$orphans}건 고아 레코드"); } else { - $this->command->info(" entity_relationships 참조 무결성: OK"); + $this->command->info(' entity_relationships 참조 무결성: OK'); } } @@ -547,12 +601,12 @@ private function printSummary(): void { $this->command->newLine(); $this->command->info('=== 경동기업 품목 기준 데이터 시더 완료 ==='); - $this->command->info(" 매핑 현황:"); - $this->command->info(" pageMap: " . count($this->pageMap) . "건"); - $this->command->info(" sectionMap: " . count($this->sectionMap) . "건"); - $this->command->info(" fieldMap: " . count($this->fieldMap) . "건"); - $this->command->info(" categoryMap: " . count($this->categoryMap) . "건"); - $this->command->info(" itemMap: " . count($this->itemMap) . "건"); + $this->command->info(' 매핑 현황:'); + $this->command->info(' pageMap: '.count($this->pageMap).'건'); + $this->command->info(' sectionMap: '.count($this->sectionMap).'건'); + $this->command->info(' fieldMap: '.count($this->fieldMap).'건'); + $this->command->info(' categoryMap: '.count($this->categoryMap).'건'); + $this->command->info(' itemMap: '.count($this->itemMap).'건'); } // ────────────────────────────────────────────────────────────────── @@ -561,11 +615,11 @@ private function printSummary(): void private function loadJson(string $filename): array { - $path = $this->dataPath . '/' . $filename; + $path = $this->dataPath.'/'.$filename; if (! file_exists($path)) { $this->command->error("JSON 파일 없음: {$path}"); - $this->command->error("먼저 php artisan kyungdong:export-item-master 를 실행하세요."); + $this->command->error('먼저 php artisan kyungdong:export-item-master 를 실행하세요.'); throw new \RuntimeException("JSON 파일 없음: {$path}"); } diff --git a/database/seeders/data/kyungdong/items.json b/database/seeders/data/kyungdong/items.json index 29b2a24..af2df14 100644 --- a/database/seeders/data/kyungdong/items.json +++ b/database/seeders/data/kyungdong/items.json @@ -1,17942 +1,17965 @@ [ - { - "tenant_id": 287, - "item_type": "PT", - "code": "00002", - "name": "하장티바(스크린용)", - "unit": "EA", - "category_id": 359, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 1, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13353 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00003", - "name": "힌지-정방향", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 2, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13354 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00004", - "name": "쪼인트바", - "unit": "EA", - "category_id": 345, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 3, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13355 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00007", - "name": "엘바+하장바", - "unit": "M", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2.4\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 4, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13356 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00008", - "name": "엘바+하장바", - "unit": "M", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 5, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13357 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00009", - "name": "엘바+하장바", - "unit": "M", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 6, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13358 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00010", - "name": "티바+엘바+평철", - "unit": " ", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 7, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13359 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00011", - "name": "티바+엘바+평철", - "unit": " ", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 8, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13360 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00013", - "name": "점검구3", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 9, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13361 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00015", - "name": "가이드레일", - "unit": "m", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 10, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13362 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00017", - "name": "평철4.5T", - "unit": "M", - "category_id": 362, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1200\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 11, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13363 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00018", - "name": "평철4.5T", - "unit": "M", - "category_id": 362, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 12, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13364 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00019", - "name": "평철9T", - "unit": "M", - "category_id": 362, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 13, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13365 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00020", - "name": "이중알미늄셔터", - "unit": "㎡", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 14, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13366 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00021", - "name": "평철12T", - "unit": "M", - "category_id": 362, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 15, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13367 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00022", - "name": "가이드레일쫄대", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 16, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13368 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00023", - "name": "롤가스켓(폭50)", - "unit": "M", - "category_id": 367, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 17, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13369 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00024", - "name": "가이드레일쫄대(삼각)", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 18, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13370 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00025", - "name": "린텔용쫄대(ㄷ)", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 19, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13371 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "00026", - "name": "알카바(R-case)", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"0.4*480*1220\", \"item_div\": \"[부재료]\", \"legacy_num\": 20, \"107_item_name\": \"알카바\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"0.4*480*1220\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13372 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00029", - "name": "봉제가스켓", - "unit": "M", - "category_id": 367, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 21, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13373 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00031", - "name": "스티커", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 22, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13374 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00032", - "name": "제어기 스티커", - "unit": " ", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 23, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13375 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00033", - "name": "3M-스프레이", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 24, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13376 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00034", - "name": "힌지-역방향", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 25, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13377 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00035", - "name": "철재용하장바(SUS)3000", - "unit": "EA", - "category_id": 359, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"mm\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 26, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13378 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "00036", - "name": "철재용하장바(SUS1.2T)", - "unit": "M", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"thickness\": 1.2, \"legacy_num\": 27, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13379 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00037", - "name": "전면린텔", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 28, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13380 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00038", - "name": "후면린텔", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 29, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13381 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00039", - "name": "셔터박스", - "unit": " ", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 30, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13382 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00040", - "name": "후면린텔", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 31, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13383 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00041", - "name": "측면린텔", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 32, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13384 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00042", - "name": "측면린텔", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 33, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13385 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "00043", - "name": "불연지퍼", - "unit": "M", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 34, \"107_item_name\": \"지퍼류\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13386 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "00044", - "name": "지퍼슬라이더", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 35, \"107_item_name\": \"지퍼류\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13387 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00045", - "name": "칼", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 36, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13388 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "00046", - "name": "화스너", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 37, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13389 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "111111", - "name": "부자재", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 38, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13390 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "1378173731", - "name": "철판절단", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 39, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13391 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "20000", - "name": "sus1.2*1219*2438", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 2438, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 40, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"2438\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13392 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "20002", - "name": "sus1.2*1219*3000", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 3000, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 41, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"3000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13393 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "20003", - "name": "sus1.2t*1219*4000", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 4000, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 42, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2t\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"4000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13394 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "20004", - "name": "sus1.5*1219*2438", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 2438, \"item_div\": \"[원재료]\", \"thickness\": 1.5, \"legacy_num\": 43, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.5\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"2438\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13395 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "20005", - "name": "sus1.5*1219*3000", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 3000, \"item_div\": \"[원재료]\", \"thickness\": 1.5, \"legacy_num\": 44, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.5\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"3000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13396 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "20006", - "name": "sus1.5*1219*4000", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 4000, \"item_div\": \"[원재료]\", \"thickness\": 1.5, \"legacy_num\": 45, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.5\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"4000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13397 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "20007", - "name": "sus1.2*1219*c", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[원재료]\", \"legacy_num\": 46, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"c\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13398 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "20009", - "name": "sus1.5*1219*2500", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 2500, \"item_div\": \"[원재료]\", \"thickness\": 1.5, \"legacy_num\": 47, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.5\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"2500\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13399 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "20010", - "name": "sus1.2*1219*4230", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 4230, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 48, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"4230\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13400 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "20011", - "name": "sus1.2*1219*3000 P\/L", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 3000, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 49, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"3000 P\/L\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13401 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "2008", - "name": "sus1.2*1219*2500", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 2500, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 50, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"2500\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13402 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "30000", - "name": "egi1.2*1219*2438", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 2438, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 51, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"2438\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13403 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "30001", - "name": "egi1.2*1219*3000", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 3000, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 52, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"3000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13404 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "30002", - "name": "egi1.2*1219*4000", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 4000, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 53, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"4000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13405 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "30003", - "name": "egi1.6*1219*2438", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 2438, \"item_div\": \"[원재료]\", \"thickness\": 1.6, \"legacy_num\": 54, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.6\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"2438\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13406 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "30004", - "name": "egi1.6*1219*3000", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 3000, \"item_div\": \"[원재료]\", \"thickness\": 1.6, \"legacy_num\": 55, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.6\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"3000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13407 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "30005", - "name": "egi1.6*1219*4000", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 4000, \"item_div\": \"[원재료]\", \"thickness\": 1.6, \"legacy_num\": 56, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.6\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"4000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13408 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "30006", - "name": "운송료", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 57, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13409 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "50000", - "name": "수리비", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 58, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13410 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "50001", - "name": "제품개발", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 59, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13411 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "50002", - "name": "LED조명", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 60, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13412 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "50004", - "name": "사용료", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 61, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13413 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70001", - "name": "KD모터150Kg단상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 62, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13414 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70002", - "name": "KD모터150Kg삼상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 63, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13415 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70003", - "name": "KD모터300Kg단상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 64, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13416 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70004", - "name": "KD모터300Kg삼상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 65, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13417 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70005", - "name": "KD모터400Kg단상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 66, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13418 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70006", - "name": "KD모터400Kg삼상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 67, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13419 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70007", - "name": "KD모터500Kg단상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 68, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13420 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70008", - "name": "KD모터500Kg삼상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 69, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13421 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70009", - "name": "KD모터600Kg단상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 70, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13422 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70010", - "name": "KD모터600Kg삼상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 71, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13423 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70011", - "name": "KD모터800Kg단상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 72, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13424 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70012", - "name": "KD모터800Kg삼상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 73, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13425 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70013", - "name": "KD모터1000Kg삼상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 74, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13426 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70015", - "name": "KD모터1200Kg삼상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 75, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13427 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70016", - "name": "KD모터1500Kg삼상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 76, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13428 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70017", - "name": "KD모터2000Kg삼상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 77, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13429 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70018", - "name": "KD브라켓트150K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"270*150*3.5\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 78, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13430 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70019", - "name": "KD브라켓트300-600K(스크린용)", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3\\\"~4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 79, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13431 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70020", - "name": "KD브라켓트300-400K(철재용)", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 80, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13432 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70021", - "name": "KD브라켓트500-600K(철재용)", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 81, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13433 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70022", - "name": "KD브라켓트800K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 82, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13434 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70023", - "name": "KD브라켓트1000K", - "unit": " ", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 83, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13435 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70024", - "name": "KD브라켓트1500K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"910*600*10\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 84, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13436 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70025", - "name": "KD브라켓트1200K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 85, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13437 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70026", - "name": "KD연동 제어기(매립형)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"매립형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 86, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13438 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70026-1", - "name": "연동제어기커버", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 87, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13439 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70026-2", - "name": "연동제어기기판", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 88, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13440 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70027", - "name": "KD연동 제어기(노출형)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"노출형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 89, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13441 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70028", - "name": "방범스위치리모컨", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"리모컨\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 90, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13442 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70029", - "name": "방범스위치", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"스위치본체\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 91, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13443 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70030", - "name": "KD기판(PCB)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"콘트롤박스용(단상)\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 92, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13444 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70031", - "name": "KD기판(PCB)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"콘트롤박스용(삼상)\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 93, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13445 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70032", - "name": "KD기판(PCB)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"제어기본체용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 94, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13446 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70033", - "name": "KD기판(PCB)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"제어기스위치용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 95, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13447 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70034", - "name": "KD기판(PCB)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"방범스위치용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 96, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13448 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70035", - "name": "방범스위치SET", - "unit": " ", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"본체,케이블포함+리모컨1개\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 97, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13449 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70100", - "name": "KD방범모터300K", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 98, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13450 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70101", - "name": "KD방범모터400K", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 99, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13451 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "70102", - "name": "KD방범모터500K", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 100, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13452 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "71607", - "name": "N1500K모터", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 101, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13453 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "72606", - "name": "N브라켓트1500K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 102, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13454 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80006", - "name": "KD방범모터600K", - "unit": "kg", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"130*c\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 103, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13455 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "80007", - "name": "egi1.6t", - "unit": "kg", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"130*c\", \"item_div\": \"[원재료]\", \"thickness\": 1.6, \"legacy_num\": 104, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.6t\", \"102_specification_2\": \"\", \"103_specification_3\": \"\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13456 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "80008", - "name": "egi1.55", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4*3\", \"item_div\": \"[원재료]\", \"thickness\": 1.55, \"legacy_num\": 105, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.55\", \"102_specification_2\": \"\", \"103_specification_3\": \"\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13457 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "80009", - "name": "egi1.17", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4*3\", \"item_div\": \"[원재료]\", \"thickness\": 1.17, \"legacy_num\": 106, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.17\", \"102_specification_2\": \"\", \"103_specification_3\": \"\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13458 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "80010", - "name": "egi 1.17", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4*4\", \"item_div\": \"[원재료]\", \"thickness\": 1.17, \"legacy_num\": 107, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.17\", \"102_specification_2\": \"\", \"103_specification_3\": \"\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13459 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80011", - "name": "처짐로라", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 108, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13460 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80012", - "name": "가스켓쫄대(삼각)", - "unit": "EA", - "category_id": 367, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 109, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13461 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80012-1", - "name": "가스켓쫄대(삼각)", - "unit": "EA", - "category_id": 367, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 110, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13462 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80015", - "name": "P\/S버튼", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 111, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13463 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80017", - "name": "시공비", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 112, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13464 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80018", - "name": "비상문신설용", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 113, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13465 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "내화실-WY-MA12", - "name": "내화실", - "unit": "콘", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"WY-MA12\", \"item_div\": \"[부재료]\", \"legacy_num\": 114, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": "{\"lot_managed\": true, \"consumption_method\": \"manual\", \"production_source\": \"purchased\", \"material\": \"SUS316L + Para aramid\"}", - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13466 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80022", - "name": "하장조립", - "unit": "M", - "category_id": 359, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 115, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13467 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80023", - "name": "하드락본드", - "unit": "ml", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"900\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 116, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13468 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80024", - "name": "방범스위치", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 117, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13469 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80025", - "name": "상품", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 118, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13470 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80026", - "name": "A\/L무지개셔터", - "unit": " ", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 119, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13471 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80027", - "name": "가동식레일", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 120, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13472 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80028", - "name": "스크린가이드레일", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 121, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13473 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80029", - "name": "포스트가이드", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 122, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13474 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80030", - "name": "가이드레일(철재방화)", - "unit": " ", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 123, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13475 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80031", - "name": "포스트보강", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 124, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13476 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80032", - "name": "알카바몰딩", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3000\", \"item_div\": \"[부재료]\", \"legacy_num\": 125, \"107_item_name\": \"알카바\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"3000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13477 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80034", - "name": "HY모터400KG", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 126, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13478 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80035", - "name": "BS 샤우드 2인치", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 127, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13479 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80036", - "name": "조인트", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 128, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13480 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80037", - "name": "베어링", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"uc206\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 129, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13481 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80038", - "name": "스텐타공", - "unit": " ", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 130, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13482 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80039", - "name": "임가공스크린", - "unit": " ", - "category_id": 311, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 131, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13483 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80040", - "name": "실구입", - "unit": " ", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 132, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13484 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80041", - "name": "덧대기원단(폭400)", - "unit": " ", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3000\", \"item_div\": \"[부재료]\", \"legacy_num\": 133, \"107_item_name\": \"원단류\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"3000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13485 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80042", - "name": "절단비", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 134, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13486 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80043", - "name": "가이드레일(방범)", - "unit": " ", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 135, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13487 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80044", - "name": "미미", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 136, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13488 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80045", - "name": "티바+엘바+평철", - "unit": " ", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 137, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13489 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80046", - "name": "기타조립비", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 138, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13490 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80047", - "name": "SUS 1.5T (절곡가공\/㎡)", - "unit": "㎡", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 139, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13491 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80047-1", - "name": "SUS 1.5T (절곡가공\/㎏)", - "unit": "kg", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 140, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13492 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80047-2", - "name": "SUS 1.5T (미러 절곡가공)", - "unit": "KG", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 141, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13493 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80048", - "name": "EGI 1.2 T (절곡가공\/㎡)", - "unit": "㎡", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 142, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13494 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80048-1", - "name": "EGI 1.2 T (절곡가공\/㎏)", - "unit": "kg", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 143, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13495 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80049", - "name": "앵글40*3T- 타공", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 144, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13496 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80050", - "name": "엘바+평철", - "unit": "Set", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 145, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13497 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80051", - "name": "SUS 1.2T (절곡가공\/㎡)", - "unit": "㎡", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 146, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13498 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80051-1", - "name": "SUS 1.2T (절곡가공\/㎏)", - "unit": "kg", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 147, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13499 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80051-2", - "name": "SUS 1.2T (미러 절곡가공\/㎡)", - "unit": "kg", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 148, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13500 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80052", - "name": "EGI 1.6 T (절곡가공\/㎡)", - "unit": "㎡", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 149, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13501 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80052-1", - "name": "EGI 1.6 T (절곡가공\/㎏)", - "unit": "kg", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 150, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13502 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80053", - "name": "기타", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 151, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13503 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80054", - "name": "비상문평철세트", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 152, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13504 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80055", - "name": "평철가공", - "unit": " ", - "category_id": 362, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 153, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13505 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80056", - "name": "매립BOX", - "unit": " ", - "category_id": 351, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 154, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13506 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80057", - "name": "금형", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 155, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13507 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80058", - "name": "레이져가공", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 156, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13508 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80059", - "name": "처짐로라-大형", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 157, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13509 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80060", - "name": "주문형 매립박스", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 158, \"107_item_name\": \"포장자재\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13510 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80061", - "name": "8인치후렌지", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 159, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13511 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80062", - "name": "짜부가스켓", - "unit": " ", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3000\", \"item_div\": \"[부재료]\", \"legacy_num\": 160, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"3000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13512 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80063", - "name": "단열셔터", - "unit": "set", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 161, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13513 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80063-1", - "name": "단열가이드레일", - "unit": "M", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 162, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13514 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80064", - "name": "방화스크린셔터 자재 납품", - "unit": "식", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 163, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13515 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80065", - "name": "절곡가공", - "unit": " ", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 164, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13516 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80066", - "name": "롤가스켓(폭60)", - "unit": "M", - "category_id": 367, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 165, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13517 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80066-1", - "name": "롤가스켓(폭80)", - "unit": "M", - "category_id": 367, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 166, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13518 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80067", - "name": "가스켓쫄대(삼각)", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4000\", \"item_div\": \"[부재료]\", \"legacy_num\": 167, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"4000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13519 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80068", - "name": "알카바(R-case)", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"0.4*580*1220\", \"item_div\": \"[부재료]\", \"legacy_num\": 168, \"107_item_name\": \"알카바\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"0.4*580*1220\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13520 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80069", - "name": "알카바(R-case)", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"0.4*780*1220\", \"item_div\": \"[부재료]\", \"legacy_num\": 169, \"107_item_name\": \"알카바\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"0.4*780*1220\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13521 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80070", - "name": "알카바(R-case)", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"0.4*980*1220\", \"item_div\": \"[부재료]\", \"legacy_num\": 170, \"107_item_name\": \"알카바\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"0.4*980*1220\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13522 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80071", - "name": "알카바 몰딩", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 171, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13523 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80072", - "name": "알루미늄 가이드레일", - "unit": " ", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 172, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13524 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80073", - "name": "원형자석", - "unit": " ", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 173, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13525 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80074", - "name": "덧대기원단(폭 250)", - "unit": " ", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 174, \"107_item_name\": \"원단류\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13526 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80075", - "name": "굴비힌지-정방향", - "unit": "SET", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 175, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13527 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80076", - "name": "굴비힌지-역방향", - "unit": "SET", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 176, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13528 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80077", - "name": "내풍압이중압출 1.2T", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 177, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13529 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80078", - "name": "대주-가이드레일", - "unit": " ", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 178, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13530 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80079", - "name": "윈드락", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 179, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13531 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80080", - "name": "내풍압이중단열1.2T", - "unit": " ", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 180, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13532 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80081", - "name": "투명셔터", - "unit": " ", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 181, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13533 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80082", - "name": "AL단열1.2T", - "unit": " ", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 182, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13534 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80083", - "name": "재제작인건비", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 183, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13535 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80084", - "name": "KST-600kg", - "unit": "SET", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 184, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13536 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80085", - "name": "웨이브(201)", - "unit": " ", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 185, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13537 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80086", - "name": "컨트롤박스(단상 220V용)", - "unit": " ", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 186, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13538 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80087", - "name": "리미트(100K 단상 220V용)", - "unit": " ", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 187, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13539 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80088", - "name": "연마석", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 188, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13540 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80088-1", - "name": "적평(해바라기날)", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 189, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13541 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80089", - "name": "절단석", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 190, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13542 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80090", - "name": "AL0.8T단열", - "unit": " ", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 191, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13543 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80091", - "name": "백관 100*50", - "unit": " ", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 192, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13544 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80092", - "name": "이중압출0.8T", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 193, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13545 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80093", - "name": "파이프19Φ-남경", - "unit": " ", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 194, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13546 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80094", - "name": "스텐절곡분-남경", - "unit": " ", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 195, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13547 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80095", - "name": "갈바타공(도장)", - "unit": " ", - "category_id": 320, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 196, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13548 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80096", - "name": "스테킹도어80T", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 197, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13549 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80097", - "name": "투명창", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 198, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13550 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80098", - "name": "하장고무", - "unit": " ", - "category_id": 359, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 199, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13551 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80099", - "name": "탑씰(쫄대포함)", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 200, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13552 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80100", - "name": "AL단열1.6T", - "unit": " ", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"thickness\": 1.6, \"legacy_num\": 201, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13553 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80101", - "name": "라운드셔터", - "unit": " ", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 202, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13554 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80102", - "name": "화이버글라스", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 203, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13555 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80103", - "name": "오버헤드도어50T판넬", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 204, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13556 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80104", - "name": "스테킹도어 판넬브라켓", - "unit": " ", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 205, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13557 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80105", - "name": "금액조정", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 206, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13558 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80106", - "name": "웨이브(304)", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 207, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13559 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80107", - "name": "이중", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 208, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13560 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80108", - "name": "스피드도어", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 209, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13561 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80109", - "name": "장비사용료", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 210, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13562 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80110", - "name": "STEEL SLAT", - "unit": " ", - "category_id": 342, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 211, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13563 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80111", - "name": "방화스크린셔터", - "unit": "EA", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 212, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13564 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80112", - "name": "금액조정", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 213, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13565 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80113", - "name": "P.B-S\/W", - "unit": " ", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"P.B-S\/W 2P\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 214, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13566 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80114", - "name": "상계", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 215, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13567 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80115", - "name": "LG158 가마", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 216, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13568 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80116", - "name": "25Φ환봉", - "unit": " ", - "category_id": 348, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 217, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13569 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80117", - "name": "2인치바퀴", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 218, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13570 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80118", - "name": "유니버셜조인트", - "unit": "조", - "category_id": 345, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 219, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13571 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80120", - "name": "KD방범스위치2P선", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"방범스위치용\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 220, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13572 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80121", - "name": "KD포장박스", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"모터용\", \"item_div\": \"[부재료]\", \"legacy_num\": 221, \"107_item_name\": \"포장자재\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"모터용\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13573 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80122", - "name": "KD포장박스", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"브라켓트용\", \"item_div\": \"[부재료]\", \"legacy_num\": 222, \"107_item_name\": \"포장자재\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"브라켓트용\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13574 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80123", - "name": "스프레이본드", - "unit": "EA", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"455\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 223, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13575 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80124", - "name": "락카", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 224, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13576 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80125", - "name": "KST-800KG", - "unit": "SET", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 225, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13577 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80126", - "name": "버미글라스", - "unit": "롤", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 226, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13578 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80127", - "name": "절사처리", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 227, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13579 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80128", - "name": "KD브라켓트300-600K(스크린용)", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3\\\"~5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 228, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13580 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80129", - "name": "KD브라켓트300-400K(철재용)", - "unit": "", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 229, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13581 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80131", - "name": "KD리미터(모터)", - "unit": "SET", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 230, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13582 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80135", - "name": "KD리미터카바", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"모터용\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 231, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13583 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80136", - "name": "KD컨트롤박스 CASE", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"Body\", \"item_div\": \"[부재료]\", \"legacy_num\": 232, \"107_item_name\": \"컨트롤박스\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"Body\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13584 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80137", - "name": "KD컨트롤박스 CASE", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"Cover\", \"item_div\": \"[부재료]\", \"legacy_num\": 233, \"107_item_name\": \"컨트롤박스\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"Cover\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13585 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80138", - "name": "KD안전리미트(셔터말림방지센서)", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 234, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13586 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80139", - "name": "KD밧데리", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"연동제어기용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 235, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13587 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80140", - "name": "KD뒷박스", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"연동제어기용\", \"item_div\": \"[부재료]\", \"legacy_num\": 236, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"연동제어기용\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13588 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80141", - "name": "방범스위치카바", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"노출형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 237, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13589 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80142", - "name": "KD방범스위치카바", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"매립형\", \"item_div\": \"[부재료]\", \"legacy_num\": 238, \"107_item_name\": \"방범부품\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"매립형\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13590 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80143", - "name": "IS-리미트", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 239, \"107_item_name\": \"제어기\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13591 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80144", - "name": "IS-제어기기판", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 240, \"107_item_name\": \"제어기\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13592 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80145", - "name": "컨트롤박스(유선형)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"단상(220V)\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 241, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13593 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80146", - "name": "컨트롤박스(유선형)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"삼상(380V)\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 242, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13594 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80147", - "name": "컨트롤박스(무선형)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"단상(220V)\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 243, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13595 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80148", - "name": "컨트롤박스(무선형)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"삼상(380V)\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 244, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13596 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80149", - "name": "실기름", - "unit": "말", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 245, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13597 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80150", - "name": "핵산", - "unit": "말", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 246, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13598 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80151", - "name": "구로판1.5t", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 247, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13599 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80152", - "name": "P\/B스위치", - "unit": " ", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 248, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13600 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80153", - "name": "KD브라켓트300-600K(스크린용)", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4\\\"~6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 249, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13601 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80154", - "name": "KD브라켓트300-600K(스크린용)", - "unit": " ", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4\\\"~5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 250, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13602 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80155", - "name": "KST-400K220V", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"단상\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 251, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13603 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80156", - "name": "KST-150K220V", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"단상\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 252, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13604 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80157", - "name": "KST-500K380V", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"삼상\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 253, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13605 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80158", - "name": "KST-100K220V", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"단상\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 254, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13606 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80159", - "name": "KST-300K220V", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"단상\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 255, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13607 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80160", - "name": "KST-300K380V", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"삼상\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 256, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13608 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80161", - "name": "KD-방폭제어기", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 257, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13609 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80162", - "name": "KST-연동제어기", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"노출형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 258, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13610 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80163", - "name": "KST-제어기뒷박스", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 259, \"107_item_name\": \"제어기\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13611 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80164", - "name": "KST-브라켓트800K", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 260, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13612 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "80166", - "name": "KD리미트잭", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 261, \"107_item_name\": \"제어기\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13613 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80167", - "name": "KST-브라켓트150K", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 262, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13614 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80168", - "name": "KST-브라켓트300~400K", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 263, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13615 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80169", - "name": "KST-브라켓트500~600K", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 264, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13616 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80201", - "name": "KD브라켓트500-600K(철)", - "unit": "", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 265, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13617 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "80202", - "name": "KD브라켓트800-1000K", - "unit": "", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"8\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 266, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13618 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "81000", - "name": "텐텐지롤", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 267, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13619 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90100", - "name": "KD컨넥터", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2구 차단기용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 268, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13620 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90101", - "name": "KD컨넥터", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2구 모터용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 269, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13621 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90102", - "name": "KD컨넥터", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3구 삼상모터선\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 270, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13622 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90103", - "name": "KD컨넥터", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4구 단상모터선\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 271, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13623 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90104", - "name": "KD컨넥터", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"모터리미트선\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 272, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13624 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90105", - "name": "KD컨넥터", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"연동제어기용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 273, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13625 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90106", - "name": "KD컨넥터", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3구 차단기용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 274, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13626 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90201", - "name": "KD환봉(30파이)", - "unit": "EA", - "category_id": 348, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"30Ø*350\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 275, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13627 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90202", - "name": "KD환봉", - "unit": "EA", - "category_id": 348, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"35Ø*350\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 276, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13628 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90203", - "name": "KD환봉", - "unit": "EA", - "category_id": 348, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"45Ø*350\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 277, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13629 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90204", - "name": "KD환봉", - "unit": "EA", - "category_id": 348, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"50Ø*400\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 278, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13630 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90301", - "name": "링", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3\\\"~4\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 279, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13631 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90302", - "name": "링", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3\\\"~5\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 280, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13632 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90303", - "name": "링", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4\\\"~5\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 281, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13633 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90304", - "name": "링", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4\\\"~6\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 282, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13634 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90305", - "name": "링", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"5\\\"~6\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 283, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13635 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90306", - "name": "링", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3\\\"~6\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 284, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13636 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90307", - "name": "링", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"~8\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 285, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13637 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90401", - "name": "복주머니", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 286, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13638 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90402", - "name": "복주머니", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 287, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13639 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90403", - "name": "전동축링(복주머니)", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 288, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13640 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90404", - "name": "복주머니", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"(71)\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 289, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13641 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90405", - "name": "복주머니", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"(91)\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 290, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13642 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90406", - "name": "복주머니", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"8\\\"(71)\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 291, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13643 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90407", - "name": "복주머니", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"8\\\"(91)\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 292, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13644 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90408", - "name": "복주머니", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"10\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 293, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13645 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90409", - "name": "복주머니", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"12\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 294, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13646 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90501", - "name": "후렌지(기본)", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4\\\"30Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 295, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13647 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90502", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4\\\"35Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 296, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13648 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90503", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"5\\\"30Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 297, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13649 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90504", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"5\\\"35Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 298, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13650 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90505", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"30Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 299, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13651 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90506", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"35Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 300, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13652 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90507", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"8\\\"35Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 301, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13653 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90508", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"8\\\"45Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 302, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13654 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90509", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"8\\\"50Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 303, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13655 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90510", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"10\\\"45Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 304, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13656 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90511", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"10\\\"50Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 305, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13657 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90512", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"12\\\"45Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 306, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13658 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90513", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"12\\\"50Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 307, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13659 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90514", - "name": "후렌지", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"45Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 308, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13660 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90601", - "name": "출력기어(브라켓트)", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"300K-600K스크린용\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 309, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13661 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90602", - "name": "출력기어(브라켓트)", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"300K-600K철재용\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 310, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13662 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90603", - "name": "출력기어(브라켓트)", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"800K-1000K철재용\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 311, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13663 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90604", - "name": "박스테두리몰딩(갈바)50*50", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 312, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13664 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "90605", - "name": "SUS 316 slat", - "unit": "Lot", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 313, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13665 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90606", - "name": "제연모타", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 314, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13666 - }, - { - "tenant_id": 287, - "item_type": "CS", - "code": "90607", - "name": "출장비", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[무형상품]\", \"item_name\": \"출장비\", \"legacy_num\": 315, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13667 - }, - { - "tenant_id": 287, - "item_type": "CS", - "code": "90608", - "name": "노무비", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[무형상품]\", \"item_name\": \"노무비\", \"legacy_num\": 316, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13668 - }, - { - "tenant_id": 287, - "item_type": "CS", - "code": "90610", - "name": "금액조정", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[무형상품]\", \"item_name\": \"금액조정\", \"legacy_num\": 318, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13669 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90611", - "name": "철재갈매기", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 319, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13670 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90612", - "name": "삥삥", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 320, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13671 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90699", - "name": "KD-컨트롤 삼상", - "unit": " ", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1500k용\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 321, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13672 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90700", - "name": "KD컨트롤 단상 400Kg", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"300k~400k용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 322, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13673 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90701", - "name": "KD컨트롤 단상 600K", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"500k~600k용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 323, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13674 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90702", - "name": "KD컨트롤 단상 1500K", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1500k용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 324, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13675 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90703", - "name": "KD컨트롤 삼상", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"삼상\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 325, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13676 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90704", - "name": "KD차단기 단상", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"단상\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 326, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13677 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90705", - "name": "KD차단기 삼상", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"삼상\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 327, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13678 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90706", - "name": "KD콘덴서 400K", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"300K-400K용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 328, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13679 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90707", - "name": "KD콘덴서 600K", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"500K-600K용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 329, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13680 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90708", - "name": "KD콘덴서 800K", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"800K용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 330, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13681 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90709", - "name": "KD제어기 버튼뚜껑", - "unit": "", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"버튼기판용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 331, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13682 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90710", - "name": "KD모터뚜껑", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"모터뚜껑\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 332, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13683 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90711", - "name": "트랜스", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"연동제어기용\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 333, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13684 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90712", - "name": "판넬", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 334, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13685 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90713", - "name": "스텐1.2", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 335, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13686 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90714", - "name": "롤가스켓(폭50)", - "unit": "롤", - "category_id": 367, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 336, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13687 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90715", - "name": "모터DC", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 337, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13688 - }, - { - "tenant_id": 287, - "item_type": "CS", - "code": "90716", - "name": "모터A\/S", - "unit": " ", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[무형상품]\", \"item_name\": \"모터A\/S\", \"legacy_num\": 338, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13689 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "90717", - "name": "쪽잠", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 339, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13690 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90718", - "name": "캡너트", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 340, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13691 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90719", - "name": "평와샤", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6*18\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 341, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13692 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90720", - "name": "베벨기어", - "unit": "SET", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 342, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13693 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90721", - "name": "KD-모터발", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 343, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13694 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90722", - "name": "AL내풍압셔터", - "unit": " ", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 344, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13695 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90723", - "name": "KD-연동제어기 키", - "unit": " ", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 345, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13696 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90723-1", - "name": "KD-제어기 키뭉치", - "unit": " ", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 346, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13697 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90724", - "name": "AL방범셔터", - "unit": " ", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 347, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13698 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90725", - "name": "특수단열셔터", - "unit": " ", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 348, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13699 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90726", - "name": "이중파이프 방범", - "unit": " ", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 349, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13700 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90727", - "name": "비상문(화이바)", - "unit": " ", - "category_id": 365, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 350, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13701 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "H0001", - "name": "칼라각파이프50x30x1.4T", - "unit": "EA", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 351, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13702 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "H0002", - "name": "칼라각파이프50*50*2T", - "unit": "EA", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 352, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13703 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "H0003", - "name": "앵글40x40x3T", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"5000\", \"item_div\": \"[부재료]\", \"thickness\": 3, \"legacy_num\": 353, \"107_item_name\": \"앵글\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"5000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13704 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "H0004", - "name": "앵글50x50x4T", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"5000\", \"item_div\": \"[부재료]\", \"thickness\": 4, \"legacy_num\": 354, \"107_item_name\": \"앵글\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"5000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13705 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "H0005", - "name": "칼라각파이프30*30*2", - "unit": "EA", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 355, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13706 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "H0006", - "name": "칼라각파이프 150*50*2.9T", - "unit": " ", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 356, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13707 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "H0007", - "name": "방화스크린(일체형)H", - "unit": " ", - "category_id": 311, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 357, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13708 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "H0009", - "name": "방화스크린(일반형)H", - "unit": " ", - "category_id": 311, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 358, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13709 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "H0010", - "name": "칼라각파이프60*60*2T", - "unit": "EA", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 359, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13710 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "H0011", - "name": "칼라각파이프100*50*1.4", - "unit": "EA", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 360, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13711 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "H0012", - "name": "칼라각파이프100x50x2T", - "unit": " ", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 361, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13712 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "H0013", - "name": "칼라각파이프100x100x2T", - "unit": "EA", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 362, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13713 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "H0014", - "name": "아연각관", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 363, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13714 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "H0015", - "name": "앵글가공 40*3T", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"400mm\", \"item_div\": \"[부재료]\", \"thickness\": 3, \"legacy_num\": 364, \"107_item_name\": \"앵글\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"400mm\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13715 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "H0016", - "name": "앵글가공 50*4T", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"550mm\", \"item_div\": \"[부재료]\", \"thickness\": 4, \"legacy_num\": 365, \"107_item_name\": \"앵글\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"550mm\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13716 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "H0017", - "name": "앵글가공 50*4T", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"600mm\", \"item_div\": \"[부재료]\", \"thickness\": 4, \"legacy_num\": 366, \"107_item_name\": \"앵글\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"600mm\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13717 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "H0018", - "name": "앵글가공 50*4T", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"700mm\", \"item_div\": \"[부재료]\", \"thickness\": 4, \"legacy_num\": 367, \"107_item_name\": \"앵글\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"700mm\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13718 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1011", - "name": "작업복(춘추복-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"S\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 368, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13719 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1012", - "name": "작업복(춘추복-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"M\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 369, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13720 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1013", - "name": "작업복(춘추복-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 370, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13721 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1014", - "name": "작업복(춘추복-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 371, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13722 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1015", - "name": "작업복(춘추복-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 372, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13723 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1016", - "name": "작업복(춘추복-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 373, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13724 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1021", - "name": "작업복(춘추복-하의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"28\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 374, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13725 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1022", - "name": "작업복(춘추복-하의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"30\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 375, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13726 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1023", - "name": "작업복(춘추복-하의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"32\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 376, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13727 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1024", - "name": "작업복(춘추복-하의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"34\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 377, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13728 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1025", - "name": "작업복(춘추복-하의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"36\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 378, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13729 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1031", - "name": "작업복(동계-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"S\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 379, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13730 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1032", - "name": "작업복(동계-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"M\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 380, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13731 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1033", - "name": "작업복(동계-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 381, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13732 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1034", - "name": "작업복(동계-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 382, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13733 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1035", - "name": "작업복(동계-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 383, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13734 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1036", - "name": "작업복(동계-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 384, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13735 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1041", - "name": "작업복(동계-하의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"28\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 385, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13736 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1042", - "name": "작업복(동계-하의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"30\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 386, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13737 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1043", - "name": "작업복(동계-하의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"32\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 387, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13738 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1044", - "name": "작업복(동계-하의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"34\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 388, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13739 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1045", - "name": "작업복(동계-하의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"36\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 389, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13740 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1051", - "name": "작업복(조끼)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"90\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 390, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13741 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1052", - "name": "작업복(조끼)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"95\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 391, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13742 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1053", - "name": "작업복(조끼)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"100\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 392, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13743 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1054", - "name": "작업복(조끼)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"105\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 393, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13744 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1055", - "name": "작업복(조끼)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"110\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 394, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13745 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1056", - "name": "작업복(조끼)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"115\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 395, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13746 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1057", - "name": "작업복(겨울조끼)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"95\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 396, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13747 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1061", - "name": "작업복(하계-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"90\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 397, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13748 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1062", - "name": "작업복(하계-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"95\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 398, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13749 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1063", - "name": "작업복(하계-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"100\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 399, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13750 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1064", - "name": "작업복(하계-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"105\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 400, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13751 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1065", - "name": "작업복(하계-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"110\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 401, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13752 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1066", - "name": "작업복(하계-상의)", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"115\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 402, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13753 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1071", - "name": "제전복-원피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"S\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 403, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13754 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1072", - "name": "제전복-원피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"M\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 404, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13755 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1073", - "name": "제전복-원피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 405, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13756 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1074", - "name": "제전복-원피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 406, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13757 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1075", - "name": "제전복-원피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 407, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13758 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1076", - "name": "제전복-원피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 408, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13759 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1081", - "name": "제전복-투피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"S\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 409, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13760 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1081-1", - "name": "제전복-상의", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"S\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 410, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13761 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1082", - "name": "제전복-투피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"M\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 411, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13762 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1082-1", - "name": "제전복-상의", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"M\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 412, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13763 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1083", - "name": "제전복-투피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 413, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13764 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1083-1", - "name": "제전복-상의", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 414, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13765 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1084", - "name": "제전복-투피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 415, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13766 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1084-1", - "name": "제전복-상의", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 416, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13767 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1085", - "name": "제전복-투피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 417, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13768 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1085-1", - "name": "제전복-상의", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 418, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13769 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1086", - "name": "제전복-투피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 419, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13770 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1086-1", - "name": "제전복-상의", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 420, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13771 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1087", - "name": "제전복-투피스형", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 421, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13772 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1087-1", - "name": "제전복-상의", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 422, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13773 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1091", - "name": "근무복(동계-상의)", - "unit": "벌", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"S\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 423, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13774 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1092", - "name": "근무복(동계-상의)", - "unit": "벌", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"M\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 424, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13775 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1093", - "name": "근무복(동계-상의)", - "unit": "벌", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 425, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13776 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1094", - "name": "근무복(동계-상의)", - "unit": "벌", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 426, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13777 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1095", - "name": "근무복(동계-상의)", - "unit": "벌", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 427, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13778 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1096", - "name": "근무복(동계-상의)", - "unit": "벌", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 428, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13779 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1097", - "name": "근무복(동계-털상의)", - "unit": "벌", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 429, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13780 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1098", - "name": "근무복(동계-털상의)", - "unit": "벌", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 430, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13781 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1099", - "name": "작업양말", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"남\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 431, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13782 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K1100", - "name": "작업양말", - "unit": "벌", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"여\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 432, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13783 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2011", - "name": "안전화(단화형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"240\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 433, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13784 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2012", - "name": "안전화(단화형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"245\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 434, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13785 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2013", - "name": "안전화(단화형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"250\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 435, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13786 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2014", - "name": "안전화(단화형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"255\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 436, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13787 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2015", - "name": "안전화(단화형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"260\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 437, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13788 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2016", - "name": "안전화(단화형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"265\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 438, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13789 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2017", - "name": "안전화(단화형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"270\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 439, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13790 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2018", - "name": "안전화(단화형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"280\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 440, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13791 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2019", - "name": "안전화(단화형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"290\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 441, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13792 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2021", - "name": "안전화(발목형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"240\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 442, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13793 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2022", - "name": "안전화(발목형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"245\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 443, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13794 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2023", - "name": "안전화(발목형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"250\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 444, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13795 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2024", - "name": "안전화(발목형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"255\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 445, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13796 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2025", - "name": "안전화(발목형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"260\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 446, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13797 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2026", - "name": "안전화(발목형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"265\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 447, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13798 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2027", - "name": "안전화(발목형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"270\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 448, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13799 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2028", - "name": "안전화(발목형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"280\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 449, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13800 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "K2029", - "name": "안전화(발목형)", - "unit": "켤레", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"290\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 450, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13801 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0001", - "name": "is모터100kg(브라켓포함)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 451, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13802 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0004", - "name": "is모터250kg(브라켓포함)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 452, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13803 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0005", - "name": "is모터300kg(브라켓포함)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 453, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13804 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0006", - "name": "is모터400kg(브라켓포함)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 454, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13805 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0007", - "name": "is모터500kg(브라켓포함)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 455, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13806 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0008", - "name": "is모터600kg(브라켓포함)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 456, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13807 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0009", - "name": "is모터800kg", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 457, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13808 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0010", - "name": "is모터1000kg", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 458, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13809 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0011", - "name": "is모터1200kg", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 459, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13810 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0012", - "name": "뒷박스", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 460, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13811 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0013", - "name": "is연동제어기매립형", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 461, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13812 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0014", - "name": "is연동제어기노출형", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 462, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13813 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0016", - "name": "브라켓100K(인성)", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 463, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13814 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0017", - "name": "제연용모터150k", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 464, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13815 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0018", - "name": "체인", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"35*10FT\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 465, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13816 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0019", - "name": "P\/S세트", - "unit": " ", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 466, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13817 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0020", - "name": "체인", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"35OL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 467, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13818 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0021", - "name": "체인", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"35*64\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 468, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13819 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0025", - "name": "일반형 폐쇄기", - "unit": " ", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 469, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13820 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0028", - "name": "HY연동제어기매립형", - "unit": " ", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 470, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13821 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0029", - "name": "HY연동제어기노출형", - "unit": " ", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 471, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13822 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0030", - "name": "KD방범 모터150Kg단상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 472, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13823 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0031", - "name": "HY모터200KG", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 473, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13824 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0032", - "name": "HY모터300KG", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 474, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13825 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0033", - "name": "HY모터800KG", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 475, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13826 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0034", - "name": "HY모터600KG", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 476, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13827 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0035", - "name": "HY모터500KG", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 477, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13828 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0050", - "name": "매립형뒷박스제외", - "unit": " ", - "category_id": 351, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 478, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13829 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0051", - "name": "브라켓트250.300.400K(인성)", - "unit": " ", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 479, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13830 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0052", - "name": "브라켓트800.1000K(인성)", - "unit": " ", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 480, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13831 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0053", - "name": "브라켓트150K(협영)", - "unit": " ", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 481, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13832 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0054", - "name": "브라켓트500.600K(인성)", - "unit": " ", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 482, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13833 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0055", - "name": "브라켓트200K(협영)", - "unit": " ", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 483, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13834 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0056", - "name": "브라켓트400.500K(협영)", - "unit": " ", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 484, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13835 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0057", - "name": "브라켓트300K(협영)", - "unit": " ", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 485, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13836 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0058", - "name": "브라켓트600K(협영)", - "unit": " ", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 486, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13837 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "M0059", - "name": "브라켓트800K(협영)", - "unit": " ", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 487, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13838 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "MCCD0001", - "name": "방화방범연동기", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 488, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13839 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71100", - "name": "N150K모터", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 489, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13840 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71101", - "name": "N300K모터", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 490, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13841 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71102", - "name": "N400K모터", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 491, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13842 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71103", - "name": "N500K모터", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 492, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13843 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71104", - "name": "N600K모터", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 493, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13844 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71105", - "name": "N800K모터", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 494, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13845 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71201", - "name": "N300K모터(방범)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 495, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13846 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71202", - "name": "N400K모터(방범)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 496, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13847 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71203", - "name": "N500K모터(방범)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 497, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13848 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71204", - "name": "N600K모터(방범)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 498, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13849 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71205", - "name": "N800K모터(방범)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 499, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13850 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71300", - "name": "KD(무선)모터150Kg단상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 500, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13851 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71301", - "name": "KD(무선)모터300Kg단상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 501, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13852 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71302", - "name": "KD(무선)모터400Kg단상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 502, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13853 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71303", - "name": "KD(무선)모터500Kg단상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 503, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13854 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71304", - "name": "KD(무선)모터600Kg단상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 504, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13855 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71305", - "name": "KD(무선)모터800Kg단상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 505, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13856 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71600", - "name": "N150K모터", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 506, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13857 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71601", - "name": "KD(무선)모터300Kg삼상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 507, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13858 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71602", - "name": "N400K모터", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 508, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13859 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71603", - "name": "KD(무선)모터500Kg삼상", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 509, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13860 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71604", - "name": "N600K모터", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 510, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13861 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71605", - "name": "N800K모터", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 511, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13862 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71606", - "name": "N1000K모터", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 512, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13863 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71701", - "name": "N300K모터(방범)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 513, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13864 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71702", - "name": "N400K모터(방범)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 514, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13865 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71703", - "name": "N500K모터(방범)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 515, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13866 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71704", - "name": "N600K모터(방범)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 516, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13867 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71705", - "name": "N800K모터(방범)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 517, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13868 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71706", - "name": "N1000K모터(방범)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 518, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13869 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71800", - "name": "KD(무선)모터150Kg삼상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 519, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13870 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71801", - "name": "무선모터 300삼상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 520, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13871 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71802", - "name": "KD(무선)모터400Kg삼상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 521, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13872 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71803", - "name": "KD(무선)모터400Kg삼상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 522, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13873 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71804", - "name": "KD(무선)모터600Kg삼상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 523, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13874 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71805", - "name": "KD(무선)모터800Kg삼상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 524, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13875 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71806", - "name": "KD(무선)모터1000Kg삼상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 525, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13876 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N71807", - "name": "KD(무선)모터1500Kg삼상", - "unit": " ", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 526, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13877 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N72001", - "name": "브라켓트300-400K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"(380*180)3\\\"~4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 527, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13878 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N72002", - "name": "브라켓트300-400K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"(380*180)3\\\"~5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 528, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13879 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N72003", - "name": "브라켓트300-400K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"(380*180)2\\\"~6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 529, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13880 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N72101", - "name": "N브라켓트300-600K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3\\\"~4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 530, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13881 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N72102", - "name": "N브라켓트300-600K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3\\\"~5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 531, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13882 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N72601", - "name": "N브라켓트300-400K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 532, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13883 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N72602", - "name": "N브라켓트300-400K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 533, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13884 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N72603", - "name": "N브라켓트500-600K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 534, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13885 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N72604", - "name": "N브라켓트500-600K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 535, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13886 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N72605", - "name": "브라켓트800-1000K", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 536, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13887 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N73101", - "name": "N연동 제어기", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"매립형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 537, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13888 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N73102", - "name": "N연동 제어기", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"노출형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 538, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13889 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N73201", - "name": "무선연동 제어기", - "unit": " ", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"매립형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 539, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13890 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N73202", - "name": "무선연동 제어기", - "unit": " ", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"노출형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 540, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13891 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N73601", - "name": "N방범스위치", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"본채\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 541, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13892 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N73602", - "name": "N방범스위치카바", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"노출형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 542, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13893 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N73603", - "name": "N방범스위치카바", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"매립형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 543, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13894 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N73604", - "name": "N방범스위치리모컨", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4구\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 544, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13895 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N74101", - "name": "N컨트롤 300K", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 545, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13896 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N74102", - "name": "N컨트롤 400K", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 546, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13897 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N74103", - "name": "N컨트롤 600K", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 547, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13898 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N74104", - "name": "N컨트롤 700K", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 548, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13899 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N74105", - "name": "N컨트롤 800K", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 549, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13900 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N74106", - "name": "N컨트롤 삼상", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 550, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13901 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N74201", - "name": "N컨트롤 기판", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 551, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13902 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N74202", - "name": "N컨트롤 기판", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 552, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13903 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N74203", - "name": "N제어기 기판", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"본체\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 553, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13904 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N74204", - "name": "N제어기 기판", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"스위치\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 554, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13905 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N74205", - "name": "N방범스위치 기판", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"리모컨형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 555, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13906 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N75101", - "name": "N안전리미트", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"상부\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 556, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13907 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N75201", - "name": "N6각주머니", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"3\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 557, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13908 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N75202", - "name": "N6각주머니", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 558, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13909 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N75203", - "name": "N6각주머니", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 559, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13910 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N75204", - "name": "N6각주머니", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 560, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13911 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "N76101", - "name": "카다로크", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2020버전\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 561, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13912 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "R0001", - "name": "BS 샤우드 3인치", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 562, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13913 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "R0002", - "name": "BS 샤우드 4인치", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 563, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13914 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "R0003", - "name": "BS 샤우드 5인치", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 564, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13915 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "R0004", - "name": "BS 샤우드 6인치", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 565, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13916 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "R0005", - "name": "BS 샤우드 8인치", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 566, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13917 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "R0006", - "name": "KS 샤우드 10인치", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 567, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13918 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "R0007", - "name": "샤우드3인치", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"300\", \"item_div\": \"[부재료]\", \"legacy_num\": 568, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"300\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13919 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "R0008", - "name": "BS 샤우드 4인치", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"4500\", \"item_div\": \"[부재료]\", \"legacy_num\": 569, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"4500\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13920 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0000", - "name": "방화스크린(일반형)", - "unit": "㎡", - "category_id": 311, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 570, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13921 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0001", - "name": "국민방화스크린(일체형)", - "unit": "㎡", - "category_id": 311, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 571, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13922 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0002", - "name": "방화스크린셔터 원단", - "unit": "㎡", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 572, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13923 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S00020", - "name": "비상문(실리카)", - "unit": " ", - "category_id": 365, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 573, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13924 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0003", - "name": "제연스크린", - "unit": "㎡", - "category_id": 311, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 574, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13925 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0004", - "name": "방범용철재스라트1.2T", - "unit": "㎡", - "category_id": 342, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 575, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13926 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0005", - "name": "방화용철재스라트1.6T", - "unit": "㎡", - "category_id": 342, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 576, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13927 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0006", - "name": "영사창", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 577, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13928 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0007", - "name": "망입유리", - "unit": "M", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 578, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13929 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "S0008", - "name": "실리카원단(슬리팅)", - "unit": "M", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1220mm\", \"item_div\": \"[원재료]\", \"legacy_num\": 579, \"100_item_name\": \"원단류\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13930 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0009", - "name": "내풍압셔터", - "unit": "㎡", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 580, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13931 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "S0010", - "name": "실리카원단(1270)", - "unit": "M", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1270mm\", \"item_div\": \"[원재료]\", \"legacy_num\": 581, \"100_item_name\": \"원단류\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13932 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0011", - "name": "실", - "unit": "타", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 582, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13933 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0012", - "name": "수선비", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 583, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13934 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0019", - "name": "파이프셔터16¢", - "unit": " ", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 584, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13935 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0020", - "name": "파이프셔터19¢", - "unit": " ", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 585, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13936 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0021", - "name": "웨이브셔터", - "unit": " ", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 586, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13937 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0023", - "name": "알미늄셔터0.9T", - "unit": " ", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 587, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13938 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0024", - "name": "내풍압셔터", - "unit": " ", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 588, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13939 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0033", - "name": "제연스크린", - "unit": "㎡", - "category_id": 311, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"1500\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 589, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13940 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0034", - "name": "무기둥셔터(일체형)", - "unit": "㎡", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 590, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13941 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0035", - "name": "무기둥셔터(일반형)", - "unit": "㎡", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 591, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13942 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0036", - "name": "지퍼", - "unit": "M", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 592, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13943 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0037", - "name": "베벨기어(ㄱ자적용)", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 593, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13944 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0038", - "name": "베벨기어(ㅡ자적용)", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 594, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13945 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "S0039", - "name": "이중특수단열셔터", - "unit": " ", - "category_id": 355, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 595, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13946 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "W0001", - "name": "와이어(일반형)", - "unit": " ", - "category_id": 365, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 596, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13947 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "k1098-1", - "name": "근무복(동계-털상의)", - "unit": "벌", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 597, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13948 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "s0013", - "name": "비상문스티커", - "unit": "EA", - "category_id": 366, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 598, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13949 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "s0015", - "name": "제연원단", - "unit": " ", - "category_id": 364, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" \", \"item_div\": \"[원재료]\", \"legacy_num\": 599, \"100_item_name\": \"원단류\", \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13950 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "H0020", - "name": "칼라각파이프30x30x1.4T", - "unit": "EA", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 601, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13951 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "90205", - "name": "마환봉", - "unit": "EA", - "category_id": 348, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"6파이3000\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 602, \"legacy_source\": \"KDunitprice\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13952 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "800361", - "name": "조인트바", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \" 300\", \"item_div\": \"[부재료]\", \"legacy_num\": 603, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \" 300\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13953 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KSS01-벽면형-SUS", - "name": "KSS01 스크린 SUS마감 벽면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "스크린", - "bom": "[{\"quantity\": 1, \"child_item_id\": 13174}, {\"quantity\": 2, \"child_item_id\": 13175}, {\"quantity\": 2, \"child_item_id\": 13170}]", - "attributes": "{\"model_name\": \"KSS01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 12}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13954 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KSS01-측면형-SUS", - "name": "KSS01 스크린 SUS마감 측면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "스크린", - "bom": "[{\"quantity\": 1, \"child_item_id\": 13174}, {\"quantity\": 2, \"child_item_id\": 13175}, {\"quantity\": 2, \"child_item_id\": 13170}]", - "attributes": "{\"model_name\": \"KSS01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 13}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13955 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KSE01-벽면형-SUS", - "name": "KSE01 스크린 SUS마감 벽면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "스크린", - "bom": "[{\"quantity\": 2, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}, {\"quantity\": 2, \"child_item_id\": 13175}]", - "attributes": "{\"model_name\": \"KSE01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 14}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13956 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KSE01-벽면형-EGI", - "name": "KSE01 스크린 EGI마감 벽면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "스크린", - "bom": "[{\"quantity\": 2, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}, {\"quantity\": 2, \"child_item_id\": 13175}]", - "attributes": "{\"model_name\": \"KSE01\", \"legacy_source\": \"models\", \"finishing_type\": \"EGI마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 15}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13957 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KSE01-측면형-SUS", - "name": "KSE01 스크린 SUS마감 측면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "스크린", - "bom": "[{\"quantity\": 2, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}, {\"quantity\": 2, \"child_item_id\": 13175}]", - "attributes": "{\"model_name\": \"KSE01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 16}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13958 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KSE01-측면형-EGI", - "name": "KSE01 스크린 EGI마감 측면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "스크린", - "bom": "[{\"quantity\": 2, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}, {\"quantity\": 2, \"child_item_id\": 13175}]", - "attributes": "{\"model_name\": \"KSE01\", \"legacy_source\": \"models\", \"finishing_type\": \"EGI마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 17}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13959 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KWE01-벽면형-SUS", - "name": "KWE01 스크린 SUS마감 벽면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "스크린", - "bom": "[{\"quantity\": 2, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}, {\"quantity\": 2, \"child_item_id\": 13175}]", - "attributes": "{\"model_name\": \"KWE01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 18}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13960 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KWE01-벽면형-EGI", - "name": "KWE01 스크린 EGI마감 벽면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "스크린", - "bom": "[{\"quantity\": 2, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}, {\"quantity\": 2, \"child_item_id\": 13175}]", - "attributes": "{\"model_name\": \"KWE01\", \"legacy_source\": \"models\", \"finishing_type\": \"EGI마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 19}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13961 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KWE01-측면형-SUS", - "name": "KWE01 스크린 SUS마감 측면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "스크린", - "bom": "[{\"quantity\": 2, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}, {\"quantity\": 2, \"child_item_id\": 13175}]", - "attributes": "{\"model_name\": \"KWE01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 20}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13962 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KWE01-측면형-EGI", - "name": "KWE01 스크린 EGI마감 측면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "스크린", - "bom": "[{\"quantity\": 2, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}, {\"quantity\": 2, \"child_item_id\": 13175}]", - "attributes": "{\"model_name\": \"KWE01\", \"legacy_source\": \"models\", \"finishing_type\": \"EGI마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 21}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13963 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KQTS01-벽면형-SUS", - "name": "KQTS01 철재 SUS마감 벽면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "철재", - "bom": "[{\"quantity\": 1, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}]", - "attributes": "{\"model_name\": \"KQTS01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"철재\", \"legacy_model_id\": 22}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13964 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KQTS01-측면형-SUS", - "name": "KQTS01 철재 SUS마감 측면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "철재", - "bom": "[{\"quantity\": 1, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}]", - "attributes": "{\"model_name\": \"KQTS01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"철재\", \"legacy_model_id\": 23}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13965 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KTE01-측면형-SUS", - "name": "KTE01 철재 SUS마감 측면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "철재", - "bom": "[{\"quantity\": 1, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}]", - "attributes": "{\"model_name\": \"KTE01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"철재\", \"legacy_model_id\": 24}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13966 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KTE01-벽면형-SUS", - "name": "KTE01 철재 SUS마감 벽면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "철재", - "bom": "[{\"quantity\": 1, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}]", - "attributes": "{\"model_name\": \"KTE01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"철재\", \"legacy_model_id\": 25}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13967 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KTE01-측면형-EGI", - "name": "KTE01 철재 EGI마감 측면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "철재", - "bom": "[{\"quantity\": 1, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}]", - "attributes": "{\"model_name\": \"KTE01\", \"legacy_source\": \"models\", \"finishing_type\": \"EGI마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"철재\", \"legacy_model_id\": 26}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13968 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KTE01-벽면형-EGI", - "name": "KTE01 철재 EGI마감 벽면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "철재", - "bom": "[{\"quantity\": 1, \"child_item_id\": 13170}, {\"quantity\": 1, \"child_item_id\": 13174}]", - "attributes": "{\"model_name\": \"KTE01\", \"legacy_source\": \"models\", \"finishing_type\": \"EGI마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"철재\", \"legacy_model_id\": 27}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13969 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KSS02-측면형-SUS", - "name": "KSS02 스크린 SUS마감 측면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "스크린", - "bom": "[{\"quantity\": 1, \"child_item_id\": 13174}, {\"quantity\": 2, \"child_item_id\": 13170}, {\"quantity\": 2, \"child_item_id\": 13175}]", - "attributes": "{\"model_name\": \"KSS02\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 28}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13970 - }, - { - "tenant_id": 287, - "item_type": "FG", - "code": "FG-KSS02-벽면형-SUS", - "name": "KSS02 스크린 SUS마감 벽면형", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": "스크린", - "bom": "[{\"quantity\": 1, \"child_item_id\": 13174}, {\"quantity\": 2, \"child_item_id\": 13170}, {\"quantity\": 2, \"child_item_id\": 13175}]", - "attributes": "{\"model_name\": \"KSS02\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 29}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13971 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-스크린", - "name": "스크린", - "unit": "EA", - "category_id": 311, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"100000.00\", \"legacy_num\": 1, \"legacy_source\": \"item_list\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13972 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-쉐터박스", - "name": "쉐터박스", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"50000.00\", \"legacy_num\": 2, \"legacy_source\": \"item_list\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13973 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-연기장벽", - "name": "연기장벽", - "unit": "EA", - "category_id": 353, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"30000.00\", \"legacy_num\": 3, \"legacy_source\": \"item_list\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13974 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-마구리", - "name": "마구리", - "unit": "EA", - "category_id": 357, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"20000.00\", \"legacy_num\": 4, \"legacy_source\": \"item_list\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13975 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-앵글브라켓", - "name": "앵글브라켓", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"15000.00\", \"legacy_num\": 5, \"legacy_source\": \"item_list\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13976 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-가이드레일", - "name": "가이드레일", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"25000.00\", \"legacy_num\": 6, \"legacy_source\": \"item_list\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13977 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-레일연기", - "name": "레일연기", - "unit": "EA", - "category_id": 353, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"20000.00\", \"legacy_num\": 7, \"legacy_source\": \"item_list\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13978 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-바텀바", - "name": "바텀바", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"15000.00\", \"legacy_num\": 8, \"legacy_source\": \"item_list\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13979 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-메인앵글", - "name": "메인앵글", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"30000.00\", \"legacy_num\": 9, \"legacy_source\": \"item_list\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13980 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-하단마감재", - "name": "하단마감재", - "unit": "EA", - "category_id": 358, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"legacy_source\": \"BDmodels_seconditem\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13981 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-L-BAR", - "name": "L-BAR", - "unit": "EA", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"legacy_source\": \"BDmodels_seconditem\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13982 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-보강평철", - "name": "보강평철", - "unit": "EA", - "category_id": 362, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"legacy_source\": \"BDmodels_seconditem\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13983 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-케이스", - "name": "케이스", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"legacy_source\": \"BDmodels_seconditem\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13984 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-케이스용 연기차단재", - "name": "케이스용 연기차단재", - "unit": "EA", - "category_id": 353, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"legacy_source\": \"BDmodels_seconditem\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13985 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "PT-가이드레일용 연기차단재", - "name": "가이드레일용 연기차단재", - "unit": "EA", - "category_id": 353, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"legacy_source\": \"BDmodels_seconditem\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13986 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-020", - "name": "제어기 노출형", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"노출형\", \"107_item_name\": \"제어기\", \"legacy_source\": \"price_motor\", \"price_category\": \"제어기\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13987 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-021", - "name": "제어기 매립형", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"매립형\", \"107_item_name\": \"제어기\", \"legacy_source\": \"price_motor\", \"price_category\": \"제어기\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13988 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-023", - "name": "방화 콘트롤박스(단상)", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"콘트롤박스(단상)\", \"107_item_name\": \"포장자재\", \"legacy_source\": \"price_motor\", \"price_category\": \"방화\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13989 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-024", - "name": "방화 콘트롤박스(삼상)", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"콘트롤박스(삼상)\", \"107_item_name\": \"포장자재\", \"legacy_source\": \"price_motor\", \"price_category\": \"방화\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13990 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-025", - "name": "방화 콘트롤박스(1500K)", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"콘트롤박스(1500K)\", \"107_item_name\": \"포장자재\", \"legacy_source\": \"price_motor\", \"price_category\": \"방화\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13991 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-026", - "name": "방화 방화스위치", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"방화스위치\", \"107_item_name\": \"방화부품\", \"legacy_source\": \"price_motor\", \"price_category\": \"방화\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13992 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-027", - "name": "방범 콘트롤박스(단상)", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"콘트롤박스(단상)\", \"107_item_name\": \"포장자재\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13993 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-028", - "name": "방범 콘트롤박스(삼상)", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"콘트롤박스(삼상)\", \"107_item_name\": \"포장자재\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13994 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-030", - "name": "방범 스위치커버", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"스위치커버\", \"107_item_name\": \"방범부품\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13995 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-031", - "name": "방범 안전리미트", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"안전리미트\", \"107_item_name\": \"제어기\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13996 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-033", - "name": "방범 리모콘+스위치(최초)", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"리모콘+스위치(최초)\", \"107_item_name\": \"방범부품\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13997 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-034", - "name": "방범 리모콘4구", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"리모콘4구\", \"107_item_name\": \"방범부품\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13998 - }, - { - "tenant_id": 287, - "item_type": "SM", - "code": "PM-035", - "name": "방범 스위치(무선+수신기)", - "unit": "EA", - "category_id": 337, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"price_spec\": \"스위치(무선+수신기)\", \"107_item_name\": \"방범부품\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 13999 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "RM-007", - "name": "신설비상문", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": "", - "bom": null, - "attributes": "{\"raw_name\": \"신설비상문\", \"raw_category\": \"\", \"100_item_name\": \"원단류\", \"legacy_source\": \"price_raw_materials\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14000 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "RM-008", - "name": "제연커튼", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": "", - "bom": null, - "attributes": "{\"raw_name\": \"제연커튼\", \"raw_category\": \"\", \"100_item_name\": \"원단류\", \"legacy_source\": \"price_raw_materials\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14001 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "RM-010", - "name": "화이바원단", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": "", - "bom": null, - "attributes": "{\"raw_name\": \"화이바원단\", \"raw_category\": \"\", \"100_item_name\": \"원단류\", \"legacy_source\": \"price_raw_materials\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14002 - }, - { - "tenant_id": 287, - "item_type": "RM", - "code": "RM-011", - "name": "와이어원단", - "unit": "EA", - "category_id": 364, - "process_type": null, - "item_category": "", - "bom": null, - "attributes": "{\"raw_name\": \"와이어원단\", \"raw_category\": \"\", \"100_item_name\": \"원단류\", \"legacy_source\": \"price_raw_materials\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": 1, - "updated_by": 1, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14003 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-마구리-505*355", - "name": "마구리 505*355", - "unit": "EA", - "category_id": 357, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14004 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-마구리-505*385", - "name": "마구리 505*385", - "unit": "EA", - "category_id": 357, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14005 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-마구리-605*555", - "name": "마구리 605*555", - "unit": "EA", - "category_id": 357, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14006 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-마구리-655*555", - "name": "마구리 655*555", - "unit": "EA", - "category_id": 357, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14007 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-마구리-705*605", - "name": "마구리 705*605", - "unit": "EA", - "category_id": 357, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14008 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-마구리-785*685", - "name": "마구리 785*685", - "unit": "EA", - "category_id": 357, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14009 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-보강평철-50", - "name": "보강평철 50", - "unit": "EA", - "category_id": 362, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14010 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일용 연기차단재", - "name": "가이드레일용 연기차단재", - "unit": "EA", - "category_id": 353, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14011 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-마구리-655*505", - "name": "마구리 655*505", - "unit": "EA", - "category_id": 357, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14012 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-마구리-705*555", - "name": "마구리 705*555", - "unit": "EA", - "category_id": 357, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14013 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-마구리-785*605", - "name": "마구리 785*605", - "unit": "EA", - "category_id": 357, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14014 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-마구리-785*655", - "name": "마구리 785*655", - "unit": "EA", - "category_id": 357, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14015 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-케이스-500*350", - "name": "케이스 500*350", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14016 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-케이스-500*380", - "name": "케이스 500*380", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14017 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-케이스-600*500", - "name": "케이스 600*500", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14018 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-케이스-600*550", - "name": "케이스 600*550", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14019 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-케이스-650*500", - "name": "케이스 650*500", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14020 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-케이스-650*550", - "name": "케이스 650*550", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14021 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-케이스-700*550", - "name": "케이스 700*550", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14022 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-케이스-700*600", - "name": "케이스 700*600", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14023 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-케이스-780*600", - "name": "케이스 780*600", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14024 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-케이스-780*650", - "name": "케이스 780*650", - "unit": "EA", - "category_id": 368, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14025 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-케이스용 연기차단재", - "name": "케이스용 연기차단재", - "unit": "EA", - "category_id": 353, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14026 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-L-BAR-KDSS01-17*100", - "name": "L-BAR KDSS01 17*100", - "unit": "EA", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KDSS01\", \"description\": \"KDSS01용\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14027 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KDSS01-SUS-150*150", - "name": "가이드레일 KDSS01 SUS 150*150", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KDSS01\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14028 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KDSS01-SUS-150*212", - "name": "가이드레일 KDSS01 SUS 150*212", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KDSS01\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14029 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-하단마감재-KDSS01-SUS-140*78", - "name": "하단마감재 KDSS01 SUS 140*78", - "unit": "EA", - "category_id": 358, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KDSS01\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14030 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KQTS01-SUS-130*125", - "name": "가이드레일 KQTS01 SUS 130*125", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KQTS01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14031 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KQTS01-SUS-130*75", - "name": "가이드레일 KQTS01 SUS 130*75", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KQTS01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14032 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-하단마감재-KQTS01-SUS-60*30", - "name": "하단마감재 KQTS01 SUS 60*30", - "unit": "EA", - "category_id": 358, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KQTS01\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14033 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-L-BAR-KSE01-17*60", - "name": "L-BAR KSE01 17*60", - "unit": "EA", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"기존BOM동일\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14034 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KSE01-SUS-120*120", - "name": "가이드레일 KSE01 SUS 120*120", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14035 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KSE01-SUS-120*70", - "name": "가이드레일 KSE01 SUS 120*70", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14036 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KSE01-EGI-120*120", - "name": "가이드레일 KSE01 EGI 120*120", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14037 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KSE01-EGI-120*70", - "name": "가이드레일 KSE01 EGI 120*70", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14038 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-하단마감재-KSE01-SUS-64*43", - "name": "하단마감재 KSE01 SUS 64*43", - "unit": "EA", - "category_id": 358, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"기존BOM 동일,1번 품목\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14039 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-하단마감재-KSE01-EGI-60*40", - "name": "하단마감재 KSE01 EGI 60*40", - "unit": "EA", - "category_id": 358, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"기존BOM 동일,1번 품목\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14040 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-L-BAR-KSS01-17*60", - "name": "L-BAR KSS01 17*60", - "unit": "EA", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS01\", \"description\": \"기존BOM동일\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14041 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KSS01-SUS-120*120", - "name": "가이드레일 KSS01 SUS 120*120", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14042 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KSS01-SUS-120*70", - "name": "가이드레일 KSS01 SUS 120*70", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14043 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-하단마감재-KSS01-SUS-60*40", - "name": "하단마감재 KSS01 SUS 60*40", - "unit": "EA", - "category_id": 358, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS01\", \"description\": \"기존BOM 동일,1번 품목\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14044 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-L-BAR-KSS02-17*60", - "name": "L-BAR KSS02 17*60", - "unit": "EA", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS02\", \"description\": \"기존BOM동일\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14045 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KSS02-SUS-120*120", - "name": "가이드레일 KSS02 SUS 120*120", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS02\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14046 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KSS02-SUS-120*70", - "name": "가이드레일 KSS02 SUS 120*70", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS02\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14047 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-하단마감재-KSS02-SUS-60*40", - "name": "하단마감재 KSS02 SUS 60*40", - "unit": "EA", - "category_id": 358, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS02\", \"description\": \"기존BOM 동일,1번 품목\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14048 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KTE01-SUS-130*125", - "name": "가이드레일 KTE01 SUS 130*125", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KTE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14049 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KTE01-SUS-130*75", - "name": "가이드레일 KTE01 SUS 130*75", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KTE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14050 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KTE01-EGI-130*125", - "name": "가이드레일 KTE01 EGI 130*125", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KTE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14051 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KTE01-EGI-130*75", - "name": "가이드레일 KTE01 EGI 130*75", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KTE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14052 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-하단마감재-KTE01-SUS-64*34", - "name": "하단마감재 KTE01 SUS 64*34", - "unit": "EA", - "category_id": 358, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KTE01\", \"description\": \"별도마감재 바라시와 원래 전개도와 2mm차이\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14053 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-하단마감재-KTE01-EGI-60*30", - "name": "하단마감재 KTE01 EGI 60*30", - "unit": "EA", - "category_id": 358, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KTE01\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14054 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-L-BAR-KWE01-17*60", - "name": "L-BAR KWE01 17*60", - "unit": "EA", - "category_id": 361, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"기존BOM동일\", \"bdmodel_source\": \"BDmodels\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14055 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KWE01-SUS-120*120", - "name": "가이드레일 KWE01 SUS 120*120", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14056 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KWE01-SUS-120*70", - "name": "가이드레일 KWE01 SUS 120*70", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14057 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KWE01-EGI-120*120", - "name": "가이드레일 KWE01 EGI 120*120", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14058 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-가이드레일-KWE01-EGI-120*70", - "name": "가이드레일 KWE01 EGI 120*70", - "unit": "EA", - "category_id": 352, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14059 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-하단마감재-KWE01-SUS-64*43", - "name": "하단마감재 KWE01 SUS 64*43", - "unit": "EA", - "category_id": 358, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"기존BOM 동일,1번 품목\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14060 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "BD-하단마감재-KWE01-EGI-60*40", - "name": "하단마감재 KWE01 EGI 60*40", - "unit": "EA", - "category_id": 358, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"기존BOM 동일,1번 품목\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14061 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-220V-150K(S)", - "name": "모터 150K(S) (220V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14062 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-220V-300K(S)", - "name": "모터 300K(S) (220V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14063 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-220V-300K", - "name": "모터 300K (220V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14064 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-220V-400K(S)", - "name": "모터 400K(S) (220V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14065 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-220V-400K", - "name": "모터 400K (220V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14066 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-220V-500K", - "name": "모터 500K (220V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14067 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-220V-600K", - "name": "모터 600K (220V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14068 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-220V-800K", - "name": "모터 800K (220V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14069 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-380V-150K(S)", - "name": "모터 150K(S) (380V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14070 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-380V-300K(S)", - "name": "모터 300K(S) (380V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14071 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-380V-300K", - "name": "모터 300K (380V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14072 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-380V-400K(S)", - "name": "모터 400K(S) (380V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14073 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-380V-400K", - "name": "모터 400K (380V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14074 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-380V-500K", - "name": "모터 500K (380V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14075 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-380V-600K", - "name": "모터 600K (380V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14076 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-380V-800K", - "name": "모터 800K (380V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14077 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-380V-1000K", - "name": "모터 1000K (380V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14078 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-380V-1500K", - "name": "모터 1500K (380V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14079 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-MOTOR-380V-2000K", - "name": "모터 2000K (380V)", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14080 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-노출형", - "name": "제어기 노출형", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"제어기\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14081 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-매립형", - "name": "제어기 매립형", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"제어기\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14082 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-뒷박스", - "name": "제어기 뒷박스", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"제어기\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14083 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-방화-콘트롤박스(단상)", - "name": "방화 콘트롤박스(단상)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방화\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14084 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-방화-콘트롤박스(삼상)", - "name": "방화 콘트롤박스(삼상)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방화\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14085 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-방화-콘트롤박스(1500K)", - "name": "방화 콘트롤박스(1500K)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방화\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14086 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-방화-방화스위치", - "name": "방화 방화스위치", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방화\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14087 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-방범-콘트롤박스(단상)", - "name": "방범 콘트롤박스(단상)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14088 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-방범-콘트롤박스(삼상)", - "name": "방범 콘트롤박스(삼상)", - "unit": "EA", - "category_id": 350, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14089 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-방범-방범스위치", - "name": "방범 방범스위치", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14090 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-방범-스위치커버", - "name": "방범 스위치커버", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14091 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-방범-안전리미트", - "name": "방범 안전리미트", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14092 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-방범-리모콘+스위치(최초)", - "name": "방범 리모콘+스위치(최초)", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14093 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-방범-리모콘4구", - "name": "방범 리모콘4구", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14094 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-CTRL-방범-스위치(무선+수신기)", - "name": "방범 스위치(무선+수신기)", - "unit": "EA", - "category_id": 329, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14095 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-RAW-슬랫-방화", - "name": "슬랫 방화", - "unit": "EA", - "category_id": 342, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_raw_materials\", \"category\": \"슬랫\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14096 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-RAW-슬랫-방범", - "name": "슬랫 방범", - "unit": "EA", - "category_id": 342, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_raw_materials\", \"category\": \"슬랫\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14097 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-RAW-슬랫-조인트바", - "name": "슬랫 조인트바", - "unit": "EA", - "category_id": 345, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_raw_materials\", \"category\": \"슬랫\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": "{\"lot_managed\": true, \"consumption_method\": \"auto\", \"production_source\": \"self_produced\", \"input_tracking\": false}", - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14098 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-RAW-스크린-실리카", - "name": "스크린 실리카", - "unit": "EA", - "category_id": 365, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_raw_materials\", \"category\": \"스크린\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14099 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-RAW-스크린-화이바", - "name": "스크린 화이바", - "unit": "EA", - "category_id": 365, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_raw_materials\", \"category\": \"스크린\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14100 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-RAW-스크린-와이어", - "name": "스크린 와이어", - "unit": "EA", - "category_id": 365, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_raw_materials\", \"category\": \"스크린\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14101 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-3-0.3", - "name": "감기샤프트 3인치 0.3m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14102 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-3-0.5", - "name": "감기샤프트 3인치 0.5m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14103 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-3-6", - "name": "감기샤프트 3인치 6m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14104 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-4-0.3", - "name": "감기샤프트 4인치 0.3m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14105 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-4-3", - "name": "감기샤프트 4인치 3m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14106 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-4-4.5", - "name": "감기샤프트 4인치 4.5m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14107 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-4-6", - "name": "감기샤프트 4인치 6m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14108 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-5-6", - "name": "감기샤프트 5인치 6m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14109 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-5-7", - "name": "감기샤프트 5인치 7m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14110 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-5-8.2", - "name": "감기샤프트 5인치 8.2m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14111 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-6-3", - "name": "감기샤프트 6인치 3m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14112 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-6-6", - "name": "감기샤프트 6인치 6m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14113 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-6-7", - "name": "감기샤프트 6인치 7m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14114 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-6-8", - "name": "감기샤프트 6인치 8m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14115 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-8-6", - "name": "감기샤프트 8인치 6m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14116 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-8-8.2", - "name": "감기샤프트 8인치 8.2m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14117 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-10-6", - "name": "감기샤프트 10인치 6m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14118 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SHAFT-12-6", - "name": "감기샤프트 12인치 6m", - "unit": "EA", - "category_id": 347, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14119 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-PIPE-1.4-3000", - "name": "각파이프 1.4T 3000mm", - "unit": "EA", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"50*30\", \"source\": \"price_pipe\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14120 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-PIPE-1.4-6000", - "name": "각파이프 1.4T 6000mm", - "unit": "EA", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"50*30\", \"source\": \"price_pipe\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14121 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-PIPE-2-6000", - "name": "각파이프 2T 6000mm", - "unit": "EA", - "category_id": 346, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"spec\": \"100*50\", \"source\": \"price_pipe\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14122 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-ANGLE-MAIN-앵글3T-2.5", - "name": "앵글 앵글3T 2.5m", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14123 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-ANGLE-MAIN-앵글3T-10", - "name": "앵글 앵글3T 10m", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14124 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-ANGLE-MAIN-앵글4T-2.5", - "name": "앵글 앵글4T 2.5m", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14125 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-ANGLE-MAIN-앵글4T-10", - "name": "앵글 앵글4T 10m", - "unit": "EA", - "category_id": 374, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14126 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-ANGLE-BRACKET-스크린용", - "name": "모터받침 앵글 스크린용", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"구매 부품(Purchased Part)\", \"angle_type\": \"앵글3T\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14127 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-ANGLE-BRACKET-철제300K", - "name": "모터받침 앵글 철제300K", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"구매 부품(Purchased Part)\", \"angle_type\": \"앵글4T\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14128 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-ANGLE-BRACKET-철제400K", - "name": "모터받침 앵글 철제400K", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"구매 부품(Purchased Part)\", \"angle_type\": \"앵글4T\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14129 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-ANGLE-BRACKET-철제800K", - "name": "모터받침 앵글 철제800K", - "unit": "EA", - "category_id": 349, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"구매 부품(Purchased Part)\", \"angle_type\": \"앵글4T\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14130 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SMOKE-레일용", - "name": "연기차단재 레일용", - "unit": "EA", - "category_id": 353, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_smokeban\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14131 - }, - { - "tenant_id": 287, - "item_type": "PT", - "code": "EST-SMOKE-케이스용", - "name": "연기차단재 케이스용", - "unit": "EA", - "category_id": 353, - "process_type": null, - "item_category": null, - "bom": null, - "attributes": "{\"source\": \"price_smokeban\", \"Part_type\": \"조립 부품(Assembly Part)\"}", - "attributes_archive": null, - "options": null, - "description": null, - "is_active": 1, - "created_by": null, - "updated_by": null, - "deleted_by": null, - "created_at": "2026-02-04 22:20:41", - "updated_at": "2026-02-04 22:20:41", - "deleted_at": null, - "_original_id": 14132 - } + { + "tenant_id": 287, + "item_type": "PT", + "code": "00002", + "name": "하장티바(스크린용)", + "unit": "EA", + "category_id": 359, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 1, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13353 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00003", + "name": "힌지-정방향", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 2, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13354 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00004", + "name": "쪼인트바", + "unit": "EA", + "category_id": 345, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 3, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13355 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00007", + "name": "엘바+하장바", + "unit": "M", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2.4\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 4, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13356 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00008", + "name": "엘바+하장바", + "unit": "M", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 5, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13357 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00009", + "name": "엘바+하장바", + "unit": "M", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 6, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13358 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00010", + "name": "티바+엘바+평철", + "unit": " ", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 7, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13359 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00011", + "name": "티바+엘바+평철", + "unit": " ", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 8, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13360 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00013", + "name": "점검구3", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 9, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13361 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00015", + "name": "가이드레일", + "unit": "m", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 10, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13362 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00017", + "name": "평철4.5T", + "unit": "M", + "category_id": 362, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1200\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 11, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13363 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00018", + "name": "평철4.5T", + "unit": "M", + "category_id": 362, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 12, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13364 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00019", + "name": "평철9T", + "unit": "M", + "category_id": 362, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 13, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13365 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00020", + "name": "이중알미늄셔터", + "unit": "㎡", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 14, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13366 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00021", + "name": "평철12T", + "unit": "M", + "category_id": 362, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 15, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13367 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00022", + "name": "가이드레일쫄대", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 16, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13368 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00023", + "name": "롤가스켓(폭50)", + "unit": "M", + "category_id": 367, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 17, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13369 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00024", + "name": "가이드레일쫄대(삼각)", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 18, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13370 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00025", + "name": "린텔용쫄대(ㄷ)", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 19, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13371 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "00026", + "name": "알카바(R-case)", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"0.4*480*1220\", \"item_div\": \"[부재료]\", \"legacy_num\": 20, \"107_item_name\": \"알카바\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"0.4*480*1220\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13372 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00029", + "name": "봉제가스켓", + "unit": "M", + "category_id": 367, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 21, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13373 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00031", + "name": "스티커", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 22, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13374 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00032", + "name": "제어기 스티커", + "unit": " ", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 23, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13375 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00033", + "name": "3M-스프레이", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 24, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13376 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00034", + "name": "힌지-역방향", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 25, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13377 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00035", + "name": "철재용하장바(SUS)3000", + "unit": "EA", + "category_id": 359, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"mm\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 26, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13378 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "00036", + "name": "철재용하장바(SUS1.2T)", + "unit": "M", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"thickness\": 1.2, \"legacy_num\": 27, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13379 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00037", + "name": "전면린텔", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 28, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13380 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00038", + "name": "후면린텔", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 29, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13381 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00039", + "name": "셔터박스", + "unit": " ", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 30, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13382 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00040", + "name": "후면린텔", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 31, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13383 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00041", + "name": "측면린텔", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 32, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13384 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00042", + "name": "측면린텔", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 33, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13385 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "00043", + "name": "불연지퍼", + "unit": "M", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 34, \"107_item_name\": \"지퍼류\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13386 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "00044", + "name": "지퍼슬라이더", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 35, \"107_item_name\": \"지퍼류\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13387 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00045", + "name": "칼", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 36, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13388 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "00046", + "name": "화스너", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 37, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13389 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "111111", + "name": "부자재", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 38, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13390 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "1378173731", + "name": "철판절단", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 39, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13391 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "20000", + "name": "sus1.2*1219*2438", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 2438, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 40, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"2438\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13392 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "20002", + "name": "sus1.2*1219*3000", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 3000, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 41, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"3000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13393 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "20003", + "name": "sus1.2t*1219*4000", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 4000, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 42, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2t\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"4000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13394 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "20004", + "name": "sus1.5*1219*2438", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 2438, \"item_div\": \"[원재료]\", \"thickness\": 1.5, \"legacy_num\": 43, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.5\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"2438\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13395 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "20005", + "name": "sus1.5*1219*3000", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 3000, \"item_div\": \"[원재료]\", \"thickness\": 1.5, \"legacy_num\": 44, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.5\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"3000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13396 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "20006", + "name": "sus1.5*1219*4000", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 4000, \"item_div\": \"[원재료]\", \"thickness\": 1.5, \"legacy_num\": 45, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.5\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"4000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13397 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "20007", + "name": "sus1.2*1219*c", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[원재료]\", \"legacy_num\": 46, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"c\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13398 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "20009", + "name": "sus1.5*1219*2500", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 2500, \"item_div\": \"[원재료]\", \"thickness\": 1.5, \"legacy_num\": 47, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.5\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"2500\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13399 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "20010", + "name": "sus1.2*1219*4230", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 4230, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 48, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"4230\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13400 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "20011", + "name": "sus1.2*1219*3000 P/L", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 3000, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 49, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"3000 P/L\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13401 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "2008", + "name": "sus1.2*1219*2500", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 2500, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 50, \"100_item_name\": \"SUS(스테인리스)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"2500\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13402 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "30000", + "name": "egi1.2*1219*2438", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 2438, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 51, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"2438\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13403 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "30001", + "name": "egi1.2*1219*3000", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 3000, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 52, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"3000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13404 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "30002", + "name": "egi1.2*1219*4000", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 4000, \"item_div\": \"[원재료]\", \"thickness\": 1.2, \"legacy_num\": 53, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.2\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"4000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13405 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "30003", + "name": "egi1.6*1219*2438", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 2438, \"item_div\": \"[원재료]\", \"thickness\": 1.6, \"legacy_num\": 54, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.6\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"2438\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13406 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "30004", + "name": "egi1.6*1219*3000", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 3000, \"item_div\": \"[원재료]\", \"thickness\": 1.6, \"legacy_num\": 55, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.6\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"3000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13407 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "30005", + "name": "egi1.6*1219*4000", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"width\": 1219, \"length\": 4000, \"item_div\": \"[원재료]\", \"thickness\": 1.6, \"legacy_num\": 56, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.6\", \"102_specification_2\": \"1219\", \"103_specification_3\": \"4000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13408 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "30006", + "name": "운송료", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 57, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13409 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "50000", + "name": "수리비", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 58, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13410 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "50001", + "name": "제품개발", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 59, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13411 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "50002", + "name": "LED조명", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 60, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13412 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "50004", + "name": "사용료", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 61, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13413 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70001", + "name": "KD모터150Kg단상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 62, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13414 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70002", + "name": "KD모터150Kg삼상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 63, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13415 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70003", + "name": "KD모터300Kg단상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 64, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13416 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70004", + "name": "KD모터300Kg삼상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 65, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13417 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70005", + "name": "KD모터400Kg단상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 66, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13418 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70006", + "name": "KD모터400Kg삼상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 67, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13419 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70007", + "name": "KD모터500Kg단상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 68, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13420 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70008", + "name": "KD모터500Kg삼상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 69, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13421 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70009", + "name": "KD모터600Kg단상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 70, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13422 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70010", + "name": "KD모터600Kg삼상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 71, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13423 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70011", + "name": "KD모터800Kg단상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 72, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13424 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70012", + "name": "KD모터800Kg삼상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 73, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13425 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70013", + "name": "KD모터1000Kg삼상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 74, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13426 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70015", + "name": "KD모터1200Kg삼상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 75, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13427 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70016", + "name": "KD모터1500Kg삼상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 76, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13428 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70017", + "name": "KD모터2000Kg삼상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 77, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13429 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70018", + "name": "KD브라켓트150K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"270*150*3.5\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 78, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13430 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70019", + "name": "KD브라켓트300-600K(스크린용)", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3\\\"~4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 79, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13431 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70020", + "name": "KD브라켓트300-400K(철재용)", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 80, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13432 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70021", + "name": "KD브라켓트500-600K(철재용)", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 81, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13433 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70022", + "name": "KD브라켓트800K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 82, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13434 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70023", + "name": "KD브라켓트1000K", + "unit": " ", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 83, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13435 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70024", + "name": "KD브라켓트1500K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"910*600*10\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 84, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13436 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70025", + "name": "KD브라켓트1200K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 85, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13437 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70026", + "name": "KD연동 제어기(매립형)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"매립형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 86, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13438 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70026-1", + "name": "연동제어기커버", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 87, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13439 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70026-2", + "name": "연동제어기기판", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 88, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13440 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70027", + "name": "KD연동 제어기(노출형)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"노출형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 89, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13441 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70028", + "name": "방범스위치리모컨", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"리모컨\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 90, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13442 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70029", + "name": "방범스위치", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"스위치본체\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 91, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13443 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70030", + "name": "KD기판(PCB)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"콘트롤박스용(단상)\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 92, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13444 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70031", + "name": "KD기판(PCB)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"콘트롤박스용(삼상)\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 93, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13445 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70032", + "name": "KD기판(PCB)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"제어기본체용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 94, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13446 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70033", + "name": "KD기판(PCB)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"제어기스위치용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 95, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13447 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70034", + "name": "KD기판(PCB)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"방범스위치용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 96, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13448 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70035", + "name": "방범스위치SET", + "unit": " ", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"본체,케이블포함+리모컨1개\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 97, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13449 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70100", + "name": "KD방범모터300K", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 98, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13450 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70101", + "name": "KD방범모터400K", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 99, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13451 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "70102", + "name": "KD방범모터500K", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 100, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13452 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "71607", + "name": "N1500K모터", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 101, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13453 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "72606", + "name": "N브라켓트1500K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 102, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13454 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80006", + "name": "KD방범모터600K", + "unit": "kg", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"130*c\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 103, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13455 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "80007", + "name": "egi1.6t", + "unit": "kg", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"130*c\", \"item_div\": \"[원재료]\", \"thickness\": 1.6, \"legacy_num\": 104, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.6t\", \"102_specification_2\": \"\", \"103_specification_3\": \"\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13456 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "80008", + "name": "egi1.55", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4*3\", \"item_div\": \"[원재료]\", \"thickness\": 1.55, \"legacy_num\": 105, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.55\", \"102_specification_2\": \"\", \"103_specification_3\": \"\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13457 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "80009", + "name": "egi1.17", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4*3\", \"item_div\": \"[원재료]\", \"thickness\": 1.17, \"legacy_num\": 106, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.17\", \"102_specification_2\": \"\", \"103_specification_3\": \"\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13458 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "80010", + "name": "egi 1.17", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4*4\", \"item_div\": \"[원재료]\", \"thickness\": 1.17, \"legacy_num\": 107, \"100_item_name\": \"EGI(아연도금강판)\", \"legacy_source\": \"KDunitprice\", \"101_specification_1\": \"1.17\", \"102_specification_2\": \"\", \"103_specification_3\": \"\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13459 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80011", + "name": "처짐로라", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 108, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13460 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80012", + "name": "가스켓쫄대(삼각)", + "unit": "EA", + "category_id": 367, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 109, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13461 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80012-1", + "name": "가스켓쫄대(삼각)", + "unit": "EA", + "category_id": 367, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 110, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13462 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80015", + "name": "P/S버튼", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 111, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13463 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80017", + "name": "시공비", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 112, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13464 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80018", + "name": "비상문신설용", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 113, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13465 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "내화실-WY-MA12", + "name": "내화실", + "unit": "콘", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"WY-MA12\", \"item_div\": \"[부재료]\", \"legacy_num\": 114, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": "{\"lot_managed\": true, \"consumption_method\": \"manual\", \"production_source\": \"purchased\", \"material\": \"SUS316L + Para aramid\"}", + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13466 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80022", + "name": "하장조립", + "unit": "M", + "category_id": 359, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 115, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13467 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80023", + "name": "하드락본드", + "unit": "ml", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"900\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 116, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13468 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80024", + "name": "방범스위치", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 117, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13469 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80025", + "name": "상품", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 118, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13470 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80026", + "name": "A/L무지개셔터", + "unit": " ", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 119, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13471 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80027", + "name": "가동식레일", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 120, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13472 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80028", + "name": "스크린가이드레일", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 121, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13473 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80029", + "name": "포스트가이드", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 122, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13474 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80030", + "name": "가이드레일(철재방화)", + "unit": " ", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 123, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13475 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80031", + "name": "포스트보강", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 124, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13476 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80032", + "name": "알카바몰딩", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3000\", \"item_div\": \"[부재료]\", \"legacy_num\": 125, \"107_item_name\": \"알카바\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"3000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13477 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80034", + "name": "HY모터400KG", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 126, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13478 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80035", + "name": "BS 샤우드 2인치", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 127, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13479 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80036", + "name": "조인트", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 128, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13480 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80037", + "name": "베어링", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"uc206\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 129, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13481 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80038", + "name": "스텐타공", + "unit": " ", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 130, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13482 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80039", + "name": "임가공스크린", + "unit": " ", + "category_id": 311, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 131, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13483 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80040", + "name": "실구입", + "unit": " ", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 132, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13484 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80041", + "name": "덧대기원단(폭400)", + "unit": " ", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3000\", \"item_div\": \"[부재료]\", \"legacy_num\": 133, \"107_item_name\": \"원단류\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"3000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13485 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80042", + "name": "절단비", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 134, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13486 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80043", + "name": "가이드레일(방범)", + "unit": " ", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 135, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13487 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80044", + "name": "미미", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 136, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13488 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80045", + "name": "티바+엘바+평철", + "unit": " ", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 137, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13489 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80046", + "name": "기타조립비", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 138, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13490 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80047", + "name": "SUS 1.5T (절곡가공/㎡)", + "unit": "㎡", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 139, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13491 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80047-1", + "name": "SUS 1.5T (절곡가공/㎏)", + "unit": "kg", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 140, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13492 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80047-2", + "name": "SUS 1.5T (미러 절곡가공)", + "unit": "KG", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 141, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13493 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80048", + "name": "EGI 1.2 T (절곡가공/㎡)", + "unit": "㎡", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 142, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13494 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80048-1", + "name": "EGI 1.2 T (절곡가공/㎏)", + "unit": "kg", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 143, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13495 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80049", + "name": "앵글40*3T- 타공", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 144, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13496 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80050", + "name": "엘바+평철", + "unit": "Set", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 145, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13497 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80051", + "name": "SUS 1.2T (절곡가공/㎡)", + "unit": "㎡", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 146, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13498 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80051-1", + "name": "SUS 1.2T (절곡가공/㎏)", + "unit": "kg", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 147, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13499 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80051-2", + "name": "SUS 1.2T (미러 절곡가공/㎡)", + "unit": "kg", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 148, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13500 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80052", + "name": "EGI 1.6 T (절곡가공/㎡)", + "unit": "㎡", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 149, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13501 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80052-1", + "name": "EGI 1.6 T (절곡가공/㎏)", + "unit": "kg", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 150, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13502 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80053", + "name": "기타", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 151, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13503 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80054", + "name": "비상문평철세트", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 152, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13504 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80055", + "name": "평철가공", + "unit": " ", + "category_id": 362, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 153, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13505 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80056", + "name": "매립BOX", + "unit": " ", + "category_id": 351, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 154, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13506 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80057", + "name": "금형", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 155, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13507 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80058", + "name": "레이져가공", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 156, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13508 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80059", + "name": "처짐로라-大형", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 157, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13509 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80060", + "name": "주문형 매립박스", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 158, \"107_item_name\": \"포장자재\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13510 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80061", + "name": "8인치후렌지", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 159, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13511 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80062", + "name": "짜부가스켓", + "unit": " ", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3000\", \"item_div\": \"[부재료]\", \"legacy_num\": 160, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"3000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13512 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80063", + "name": "단열셔터", + "unit": "set", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 161, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13513 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80063-1", + "name": "단열가이드레일", + "unit": "M", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 162, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13514 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80064", + "name": "방화스크린셔터 자재 납품", + "unit": "식", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 163, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13515 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80065", + "name": "절곡가공", + "unit": " ", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 164, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13516 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80066", + "name": "롤가스켓(폭60)", + "unit": "M", + "category_id": 367, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 165, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13517 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80066-1", + "name": "롤가스켓(폭80)", + "unit": "M", + "category_id": 367, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 166, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13518 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80067", + "name": "가스켓쫄대(삼각)", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4000\", \"item_div\": \"[부재료]\", \"legacy_num\": 167, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"4000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13519 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80068", + "name": "알카바(R-case)", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"0.4*580*1220\", \"item_div\": \"[부재료]\", \"legacy_num\": 168, \"107_item_name\": \"알카바\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"0.4*580*1220\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13520 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80069", + "name": "알카바(R-case)", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"0.4*780*1220\", \"item_div\": \"[부재료]\", \"legacy_num\": 169, \"107_item_name\": \"알카바\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"0.4*780*1220\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13521 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80070", + "name": "알카바(R-case)", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"0.4*980*1220\", \"item_div\": \"[부재료]\", \"legacy_num\": 170, \"107_item_name\": \"알카바\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"0.4*980*1220\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13522 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80071", + "name": "알카바 몰딩", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 171, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13523 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80072", + "name": "알루미늄 가이드레일", + "unit": " ", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 172, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13524 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80073", + "name": "원형자석", + "unit": " ", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 173, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13525 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80074", + "name": "덧대기원단(폭 250)", + "unit": " ", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 174, \"107_item_name\": \"원단류\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13526 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80075", + "name": "굴비힌지-정방향", + "unit": "SET", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 175, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13527 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80076", + "name": "굴비힌지-역방향", + "unit": "SET", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 176, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13528 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80077", + "name": "내풍압이중압출 1.2T", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 177, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13529 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80078", + "name": "대주-가이드레일", + "unit": " ", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 178, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13530 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80079", + "name": "윈드락", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 179, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13531 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80080", + "name": "내풍압이중단열1.2T", + "unit": " ", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 180, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13532 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80081", + "name": "투명셔터", + "unit": " ", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 181, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13533 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80082", + "name": "AL단열1.2T", + "unit": " ", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 182, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13534 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80083", + "name": "재제작인건비", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 183, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13535 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80084", + "name": "KST-600kg", + "unit": "SET", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 184, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13536 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80085", + "name": "웨이브(201)", + "unit": " ", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 185, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13537 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80086", + "name": "컨트롤박스(단상 220V용)", + "unit": " ", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 186, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13538 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80087", + "name": "리미트(100K 단상 220V용)", + "unit": " ", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 187, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13539 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80088", + "name": "연마석", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 188, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13540 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80088-1", + "name": "적평(해바라기날)", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 189, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13541 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80089", + "name": "절단석", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 190, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13542 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80090", + "name": "AL0.8T단열", + "unit": " ", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 191, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13543 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80091", + "name": "백관 100*50", + "unit": " ", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 192, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13544 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80092", + "name": "이중압출0.8T", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 193, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13545 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80093", + "name": "파이프19Φ-남경", + "unit": " ", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 194, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13546 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80094", + "name": "스텐절곡분-남경", + "unit": " ", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 195, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13547 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80095", + "name": "갈바타공(도장)", + "unit": " ", + "category_id": 320, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 196, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13548 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80096", + "name": "스테킹도어80T", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 197, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13549 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80097", + "name": "투명창", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 198, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13550 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80098", + "name": "하장고무", + "unit": " ", + "category_id": 359, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 199, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13551 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80099", + "name": "탑씰(쫄대포함)", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 200, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13552 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80100", + "name": "AL단열1.6T", + "unit": " ", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"thickness\": 1.6, \"legacy_num\": 201, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13553 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80101", + "name": "라운드셔터", + "unit": " ", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 202, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13554 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80102", + "name": "화이버글라스", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 203, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13555 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80103", + "name": "오버헤드도어50T판넬", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 204, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13556 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80104", + "name": "스테킹도어 판넬브라켓", + "unit": " ", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 205, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13557 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80105", + "name": "금액조정", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 206, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13558 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80106", + "name": "웨이브(304)", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 207, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13559 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80107", + "name": "이중", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 208, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13560 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80108", + "name": "스피드도어", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 209, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13561 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80109", + "name": "장비사용료", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 210, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13562 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80110", + "name": "STEEL SLAT", + "unit": " ", + "category_id": 342, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 211, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13563 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80111", + "name": "방화스크린셔터", + "unit": "EA", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 212, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13564 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80112", + "name": "금액조정", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 213, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13565 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80113", + "name": "P.B-S/W", + "unit": " ", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"P.B-S/W 2P\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 214, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13566 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80114", + "name": "상계", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 215, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13567 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80115", + "name": "LG158 가마", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 216, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13568 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80116", + "name": "25Φ환봉", + "unit": " ", + "category_id": 348, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 217, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13569 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80117", + "name": "2인치바퀴", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 218, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13570 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80118", + "name": "유니버셜조인트", + "unit": "조", + "category_id": 345, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 219, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13571 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80120", + "name": "KD방범스위치2P선", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"방범스위치용\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 220, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13572 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80121", + "name": "KD포장박스", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"모터용\", \"item_div\": \"[부재료]\", \"legacy_num\": 221, \"107_item_name\": \"포장자재\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"모터용\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13573 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80122", + "name": "KD포장박스", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"브라켓트용\", \"item_div\": \"[부재료]\", \"legacy_num\": 222, \"107_item_name\": \"포장자재\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"브라켓트용\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13574 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80123", + "name": "스프레이본드", + "unit": "EA", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"455\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 223, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13575 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80124", + "name": "락카", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 224, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13576 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80125", + "name": "KST-800KG", + "unit": "SET", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 225, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13577 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80126", + "name": "버미글라스", + "unit": "롤", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 226, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13578 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80127", + "name": "절사처리", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 227, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13579 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80128", + "name": "KD브라켓트300-600K(스크린용)", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3\\\"~5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 228, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13580 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80129", + "name": "KD브라켓트300-400K(철재용)", + "unit": "", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 229, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13581 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80131", + "name": "KD리미터(모터)", + "unit": "SET", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 230, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13582 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80135", + "name": "KD리미터카바", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"모터용\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 231, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13583 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80136", + "name": "KD컨트롤박스 CASE", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"Body\", \"item_div\": \"[부재료]\", \"legacy_num\": 232, \"107_item_name\": \"컨트롤박스\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"Body\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13584 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80137", + "name": "KD컨트롤박스 CASE", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"Cover\", \"item_div\": \"[부재료]\", \"legacy_num\": 233, \"107_item_name\": \"컨트롤박스\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"Cover\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13585 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80138", + "name": "KD안전리미트(셔터말림방지센서)", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 234, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13586 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80139", + "name": "KD밧데리", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"연동제어기용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 235, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13587 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80140", + "name": "KD뒷박스", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"연동제어기용\", \"item_div\": \"[부재료]\", \"legacy_num\": 236, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"연동제어기용\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13588 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80141", + "name": "방범스위치카바", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"노출형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 237, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13589 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80142", + "name": "KD방범스위치카바", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"매립형\", \"item_div\": \"[부재료]\", \"legacy_num\": 238, \"107_item_name\": \"방범부품\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"매립형\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13590 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80143", + "name": "IS-리미트", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 239, \"107_item_name\": \"제어기\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13591 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80144", + "name": "IS-제어기기판", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 240, \"107_item_name\": \"제어기\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13592 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80145", + "name": "컨트롤박스(유선형)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"단상(220V)\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 241, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13593 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80146", + "name": "컨트롤박스(유선형)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"삼상(380V)\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 242, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13594 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80147", + "name": "컨트롤박스(무선형)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"단상(220V)\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 243, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13595 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80148", + "name": "컨트롤박스(무선형)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"삼상(380V)\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 244, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13596 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80149", + "name": "실기름", + "unit": "말", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 245, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13597 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80150", + "name": "핵산", + "unit": "말", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 246, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13598 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80151", + "name": "구로판1.5t", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 247, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13599 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80152", + "name": "P/B스위치", + "unit": " ", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 248, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13600 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80153", + "name": "KD브라켓트300-600K(스크린용)", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4\\\"~6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 249, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13601 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80154", + "name": "KD브라켓트300-600K(스크린용)", + "unit": " ", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4\\\"~5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 250, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13602 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80155", + "name": "KST-400K220V", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"단상\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 251, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13603 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80156", + "name": "KST-150K220V", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"단상\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 252, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13604 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80157", + "name": "KST-500K380V", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"삼상\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 253, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13605 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80158", + "name": "KST-100K220V", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"단상\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 254, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13606 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80159", + "name": "KST-300K220V", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"단상\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 255, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13607 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80160", + "name": "KST-300K380V", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"삼상\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 256, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13608 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80161", + "name": "KD-방폭제어기", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 257, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13609 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80162", + "name": "KST-연동제어기", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"노출형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 258, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13610 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80163", + "name": "KST-제어기뒷박스", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 259, \"107_item_name\": \"제어기\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13611 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80164", + "name": "KST-브라켓트800K", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 260, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13612 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "80166", + "name": "KD리미트잭", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 261, \"107_item_name\": \"제어기\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13613 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80167", + "name": "KST-브라켓트150K", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 262, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13614 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80168", + "name": "KST-브라켓트300~400K", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 263, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13615 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80169", + "name": "KST-브라켓트500~600K", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 264, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13616 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80201", + "name": "KD브라켓트500-600K(철)", + "unit": "", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 265, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13617 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "80202", + "name": "KD브라켓트800-1000K", + "unit": "", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"8\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 266, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13618 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "81000", + "name": "텐텐지롤", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 267, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13619 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90100", + "name": "KD컨넥터", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2구 차단기용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 268, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13620 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90101", + "name": "KD컨넥터", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2구 모터용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 269, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13621 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90102", + "name": "KD컨넥터", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3구 삼상모터선\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 270, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13622 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90103", + "name": "KD컨넥터", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4구 단상모터선\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 271, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13623 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90104", + "name": "KD컨넥터", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"모터리미트선\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 272, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13624 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90105", + "name": "KD컨넥터", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"연동제어기용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 273, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13625 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90106", + "name": "KD컨넥터", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3구 차단기용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 274, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13626 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90201", + "name": "KD환봉(30파이)", + "unit": "EA", + "category_id": 348, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"30Ø*350\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 275, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13627 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90202", + "name": "KD환봉", + "unit": "EA", + "category_id": 348, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"35Ø*350\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 276, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13628 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90203", + "name": "KD환봉", + "unit": "EA", + "category_id": 348, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"45Ø*350\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 277, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13629 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90204", + "name": "KD환봉", + "unit": "EA", + "category_id": 348, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"50Ø*400\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 278, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13630 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90301", + "name": "링", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3\\\"~4\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 279, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13631 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90302", + "name": "링", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3\\\"~5\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 280, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13632 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90303", + "name": "링", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4\\\"~5\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 281, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13633 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90304", + "name": "링", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4\\\"~6\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 282, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13634 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90305", + "name": "링", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"5\\\"~6\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 283, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13635 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90306", + "name": "링", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3\\\"~6\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 284, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13636 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90307", + "name": "링", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"~8\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 285, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13637 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90401", + "name": "복주머니", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 286, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13638 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90402", + "name": "복주머니", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 287, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13639 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90403", + "name": "전동축링(복주머니)", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 288, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13640 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90404", + "name": "복주머니", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"(71)\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 289, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13641 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90405", + "name": "복주머니", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"(91)\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 290, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13642 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90406", + "name": "복주머니", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"8\\\"(71)\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 291, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13643 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90407", + "name": "복주머니", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"8\\\"(91)\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 292, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13644 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90408", + "name": "복주머니", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"10\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 293, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13645 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90409", + "name": "복주머니", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"12\\\"\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 294, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13646 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90501", + "name": "후렌지(기본)", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4\\\"30Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 295, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13647 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90502", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4\\\"35Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 296, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13648 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90503", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"5\\\"30Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 297, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13649 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90504", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"5\\\"35Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 298, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13650 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90505", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"30Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 299, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13651 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90506", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"35Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 300, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13652 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90507", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"8\\\"35Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 301, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13653 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90508", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"8\\\"45Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 302, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13654 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90509", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"8\\\"50Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 303, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13655 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90510", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"10\\\"45Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 304, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13656 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90511", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"10\\\"50Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 305, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13657 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90512", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"12\\\"45Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 306, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13658 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90513", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"12\\\"50Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 307, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13659 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90514", + "name": "후렌지", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"45Ø\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 308, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13660 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90601", + "name": "출력기어(브라켓트)", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"300K-600K스크린용\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 309, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13661 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90602", + "name": "출력기어(브라켓트)", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"300K-600K철재용\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 310, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13662 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90603", + "name": "출력기어(브라켓트)", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"800K-1000K철재용\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 311, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13663 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90604", + "name": "박스테두리몰딩(갈바)50*50", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 312, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13664 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "90605", + "name": "SUS 316 slat", + "unit": "Lot", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 313, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13665 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90606", + "name": "제연모타", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 314, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13666 + }, + { + "tenant_id": 287, + "item_type": "CS", + "code": "90607", + "name": "출장비", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[무형상품]\", \"item_name\": \"출장비\", \"legacy_num\": 315, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13667 + }, + { + "tenant_id": 287, + "item_type": "CS", + "code": "90608", + "name": "노무비", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[무형상품]\", \"item_name\": \"노무비\", \"legacy_num\": 316, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13668 + }, + { + "tenant_id": 287, + "item_type": "CS", + "code": "90610", + "name": "금액조정", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[무형상품]\", \"item_name\": \"금액조정\", \"legacy_num\": 318, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13669 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90611", + "name": "철재갈매기", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 319, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13670 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90612", + "name": "삥삥", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 320, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13671 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90699", + "name": "KD-컨트롤 삼상", + "unit": " ", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1500k용\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 321, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13672 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90700", + "name": "KD컨트롤 단상 400Kg", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"300k~400k용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 322, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13673 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90701", + "name": "KD컨트롤 단상 600K", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"500k~600k용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 323, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13674 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90702", + "name": "KD컨트롤 단상 1500K", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1500k용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 324, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13675 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90703", + "name": "KD컨트롤 삼상", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"삼상\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 325, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13676 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90704", + "name": "KD차단기 단상", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"단상\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 326, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13677 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90705", + "name": "KD차단기 삼상", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"삼상\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 327, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13678 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90706", + "name": "KD콘덴서 400K", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"300K-400K용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 328, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13679 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90707", + "name": "KD콘덴서 600K", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"500K-600K용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 329, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13680 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90708", + "name": "KD콘덴서 800K", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"800K용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 330, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13681 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90709", + "name": "KD제어기 버튼뚜껑", + "unit": "", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"버튼기판용\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 331, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13682 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90710", + "name": "KD모터뚜껑", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"모터뚜껑\", \"item_div\": \"[반제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 332, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13683 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90711", + "name": "트랜스", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"연동제어기용\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 333, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13684 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90712", + "name": "판넬", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 334, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13685 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90713", + "name": "스텐1.2", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 335, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13686 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90714", + "name": "롤가스켓(폭50)", + "unit": "롤", + "category_id": 367, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 336, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13687 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90715", + "name": "모터DC", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 337, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13688 + }, + { + "tenant_id": 287, + "item_type": "CS", + "code": "90716", + "name": "모터A/S", + "unit": " ", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[무형상품]\", \"item_name\": \"모터A/S\", \"legacy_num\": 338, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13689 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "90717", + "name": "쪽잠", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 339, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13690 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90718", + "name": "캡너트", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 340, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13691 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90719", + "name": "평와샤", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6*18\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 341, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13692 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90720", + "name": "베벨기어", + "unit": "SET", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 342, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13693 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90721", + "name": "KD-모터발", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 343, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13694 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90722", + "name": "AL내풍압셔터", + "unit": " ", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 344, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13695 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90723", + "name": "KD-연동제어기 키", + "unit": " ", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 345, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13696 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90723-1", + "name": "KD-제어기 키뭉치", + "unit": " ", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 346, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13697 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90724", + "name": "AL방범셔터", + "unit": " ", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 347, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13698 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90725", + "name": "특수단열셔터", + "unit": " ", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 348, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13699 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90726", + "name": "이중파이프 방범", + "unit": " ", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 349, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13700 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90727", + "name": "비상문(화이바)", + "unit": " ", + "category_id": 365, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 350, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13701 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "H0001", + "name": "칼라각파이프50x30x1.4T", + "unit": "EA", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 351, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13702 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "H0002", + "name": "칼라각파이프50*50*2T", + "unit": "EA", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 352, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13703 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "H0003", + "name": "앵글40x40x3T", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"5000\", \"item_div\": \"[부재료]\", \"thickness\": 3, \"legacy_num\": 353, \"107_item_name\": \"앵글\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"5000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13704 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "H0004", + "name": "앵글50x50x4T", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"5000\", \"item_div\": \"[부재료]\", \"thickness\": 4, \"legacy_num\": 354, \"107_item_name\": \"앵글\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"5000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13705 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "H0005", + "name": "칼라각파이프30*30*2", + "unit": "EA", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 355, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13706 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "H0006", + "name": "칼라각파이프 150*50*2.9T", + "unit": " ", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 356, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13707 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "H0007", + "name": "방화스크린(일체형)H", + "unit": " ", + "category_id": 311, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 357, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13708 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "H0009", + "name": "방화스크린(일반형)H", + "unit": " ", + "category_id": 311, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 358, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13709 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "H0010", + "name": "칼라각파이프60*60*2T", + "unit": "EA", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 359, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13710 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "H0011", + "name": "칼라각파이프100*50*1.4", + "unit": "EA", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 360, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13711 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "H0012", + "name": "칼라각파이프100x50x2T", + "unit": " ", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 361, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13712 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "H0013", + "name": "칼라각파이프100x100x2T", + "unit": "EA", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 362, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13713 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "H0014", + "name": "아연각관", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 363, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13714 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "H0015", + "name": "앵글가공 40*3T", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"400mm\", \"item_div\": \"[부재료]\", \"thickness\": 3, \"legacy_num\": 364, \"107_item_name\": \"앵글\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"400mm\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13715 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "H0016", + "name": "앵글가공 50*4T", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"550mm\", \"item_div\": \"[부재료]\", \"thickness\": 4, \"legacy_num\": 365, \"107_item_name\": \"앵글\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"550mm\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13716 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "H0017", + "name": "앵글가공 50*4T", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"600mm\", \"item_div\": \"[부재료]\", \"thickness\": 4, \"legacy_num\": 366, \"107_item_name\": \"앵글\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"600mm\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13717 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "H0018", + "name": "앵글가공 50*4T", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"700mm\", \"item_div\": \"[부재료]\", \"thickness\": 4, \"legacy_num\": 367, \"107_item_name\": \"앵글\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"700mm\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13718 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1011", + "name": "작업복(춘추복-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"S\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 368, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13719 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1012", + "name": "작업복(춘추복-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"M\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 369, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13720 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1013", + "name": "작업복(춘추복-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 370, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13721 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1014", + "name": "작업복(춘추복-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 371, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13722 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1015", + "name": "작업복(춘추복-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 372, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13723 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1016", + "name": "작업복(춘추복-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 373, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13724 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1021", + "name": "작업복(춘추복-하의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"28\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 374, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13725 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1022", + "name": "작업복(춘추복-하의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"30\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 375, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13726 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1023", + "name": "작업복(춘추복-하의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"32\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 376, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13727 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1024", + "name": "작업복(춘추복-하의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"34\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 377, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13728 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1025", + "name": "작업복(춘추복-하의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"36\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 378, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13729 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1031", + "name": "작업복(동계-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"S\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 379, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13730 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1032", + "name": "작업복(동계-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"M\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 380, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13731 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1033", + "name": "작업복(동계-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 381, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13732 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1034", + "name": "작업복(동계-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 382, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13733 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1035", + "name": "작업복(동계-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 383, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13734 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1036", + "name": "작업복(동계-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 384, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13735 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1041", + "name": "작업복(동계-하의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"28\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 385, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13736 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1042", + "name": "작업복(동계-하의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"30\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 386, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13737 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1043", + "name": "작업복(동계-하의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"32\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 387, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13738 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1044", + "name": "작업복(동계-하의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"34\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 388, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13739 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1045", + "name": "작업복(동계-하의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"36\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 389, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13740 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1051", + "name": "작업복(조끼)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"90\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 390, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13741 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1052", + "name": "작업복(조끼)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"95\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 391, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13742 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1053", + "name": "작업복(조끼)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"100\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 392, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13743 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1054", + "name": "작업복(조끼)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"105\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 393, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13744 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1055", + "name": "작업복(조끼)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"110\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 394, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13745 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1056", + "name": "작업복(조끼)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"115\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 395, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13746 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1057", + "name": "작업복(겨울조끼)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"95\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 396, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13747 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1061", + "name": "작업복(하계-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"90\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 397, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13748 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1062", + "name": "작업복(하계-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"95\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 398, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13749 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1063", + "name": "작업복(하계-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"100\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 399, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13750 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1064", + "name": "작업복(하계-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"105\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 400, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13751 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1065", + "name": "작업복(하계-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"110\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 401, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13752 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1066", + "name": "작업복(하계-상의)", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"115\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 402, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13753 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1071", + "name": "제전복-원피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"S\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 403, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13754 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1072", + "name": "제전복-원피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"M\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 404, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13755 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1073", + "name": "제전복-원피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 405, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13756 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1074", + "name": "제전복-원피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 406, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13757 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1075", + "name": "제전복-원피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 407, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13758 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1076", + "name": "제전복-원피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 408, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13759 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1081", + "name": "제전복-투피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"S\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 409, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13760 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1081-1", + "name": "제전복-상의", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"S\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 410, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13761 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1082", + "name": "제전복-투피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"M\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 411, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13762 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1082-1", + "name": "제전복-상의", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"M\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 412, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13763 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1083", + "name": "제전복-투피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 413, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13764 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1083-1", + "name": "제전복-상의", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 414, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13765 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1084", + "name": "제전복-투피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 415, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13766 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1084-1", + "name": "제전복-상의", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 416, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13767 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1085", + "name": "제전복-투피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 417, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13768 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1085-1", + "name": "제전복-상의", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 418, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13769 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1086", + "name": "제전복-투피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 419, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13770 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1086-1", + "name": "제전복-상의", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 420, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13771 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1087", + "name": "제전복-투피스형", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 421, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13772 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1087-1", + "name": "제전복-상의", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 422, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13773 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1091", + "name": "근무복(동계-상의)", + "unit": "벌", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"S\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 423, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13774 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1092", + "name": "근무복(동계-상의)", + "unit": "벌", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"M\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 424, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13775 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1093", + "name": "근무복(동계-상의)", + "unit": "벌", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 425, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13776 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1094", + "name": "근무복(동계-상의)", + "unit": "벌", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 426, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13777 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1095", + "name": "근무복(동계-상의)", + "unit": "벌", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 427, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13778 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1096", + "name": "근무복(동계-상의)", + "unit": "벌", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 428, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13779 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1097", + "name": "근무복(동계-털상의)", + "unit": "벌", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"L\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 429, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13780 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1098", + "name": "근무복(동계-털상의)", + "unit": "벌", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 430, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13781 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1099", + "name": "작업양말", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"남\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 431, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13782 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K1100", + "name": "작업양말", + "unit": "벌", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"여\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 432, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13783 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2011", + "name": "안전화(단화형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"240\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 433, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13784 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2012", + "name": "안전화(단화형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"245\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 434, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13785 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2013", + "name": "안전화(단화형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"250\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 435, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13786 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2014", + "name": "안전화(단화형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"255\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 436, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13787 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2015", + "name": "안전화(단화형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"260\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 437, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13788 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2016", + "name": "안전화(단화형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"265\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 438, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13789 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2017", + "name": "안전화(단화형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"270\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 439, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13790 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2018", + "name": "안전화(단화형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"280\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 440, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13791 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2019", + "name": "안전화(단화형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"290\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 441, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13792 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2021", + "name": "안전화(발목형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"240\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 442, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13793 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2022", + "name": "안전화(발목형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"245\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 443, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13794 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2023", + "name": "안전화(발목형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"250\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 444, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13795 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2024", + "name": "안전화(발목형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"255\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 445, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13796 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2025", + "name": "안전화(발목형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"260\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 446, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13797 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2026", + "name": "안전화(발목형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"265\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 447, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13798 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2027", + "name": "안전화(발목형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"270\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 448, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13799 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2028", + "name": "안전화(발목형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"280\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 449, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13800 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "K2029", + "name": "안전화(발목형)", + "unit": "켤레", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"290\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 450, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13801 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0001", + "name": "is모터100kg(브라켓포함)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 451, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13802 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0004", + "name": "is모터250kg(브라켓포함)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 452, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13803 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0005", + "name": "is모터300kg(브라켓포함)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 453, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13804 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0006", + "name": "is모터400kg(브라켓포함)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 454, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13805 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0007", + "name": "is모터500kg(브라켓포함)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 455, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13806 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0008", + "name": "is모터600kg(브라켓포함)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 456, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13807 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0009", + "name": "is모터800kg", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 457, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13808 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0010", + "name": "is모터1000kg", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 458, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13809 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0011", + "name": "is모터1200kg", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 459, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13810 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0012", + "name": "뒷박스", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 460, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13811 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0013", + "name": "is연동제어기매립형", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 461, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13812 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0014", + "name": "is연동제어기노출형", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 462, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13813 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0016", + "name": "브라켓100K(인성)", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 463, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13814 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0017", + "name": "제연용모터150k", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 464, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13815 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0018", + "name": "체인", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"35*10FT\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 465, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13816 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0019", + "name": "P/S세트", + "unit": " ", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 466, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13817 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0020", + "name": "체인", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"35OL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 467, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13818 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0021", + "name": "체인", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"35*64\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 468, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13819 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0025", + "name": "일반형 폐쇄기", + "unit": " ", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 469, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13820 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0028", + "name": "HY연동제어기매립형", + "unit": " ", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 470, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13821 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0029", + "name": "HY연동제어기노출형", + "unit": " ", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 471, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13822 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0030", + "name": "KD방범 모터150Kg단상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 472, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13823 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0031", + "name": "HY모터200KG", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 473, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13824 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0032", + "name": "HY모터300KG", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 474, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13825 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0033", + "name": "HY모터800KG", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 475, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13826 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0034", + "name": "HY모터600KG", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 476, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13827 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0035", + "name": "HY모터500KG", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 477, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13828 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0050", + "name": "매립형뒷박스제외", + "unit": " ", + "category_id": 351, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 478, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13829 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0051", + "name": "브라켓트250.300.400K(인성)", + "unit": " ", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 479, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13830 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0052", + "name": "브라켓트800.1000K(인성)", + "unit": " ", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 480, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13831 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0053", + "name": "브라켓트150K(협영)", + "unit": " ", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 481, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13832 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0054", + "name": "브라켓트500.600K(인성)", + "unit": " ", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 482, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13833 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0055", + "name": "브라켓트200K(협영)", + "unit": " ", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 483, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13834 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0056", + "name": "브라켓트400.500K(협영)", + "unit": " ", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 484, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13835 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0057", + "name": "브라켓트300K(협영)", + "unit": " ", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 485, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13836 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0058", + "name": "브라켓트600K(협영)", + "unit": " ", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 486, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13837 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "M0059", + "name": "브라켓트800K(협영)", + "unit": " ", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 487, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13838 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "MCCD0001", + "name": "방화방범연동기", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 488, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13839 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71100", + "name": "N150K모터", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 489, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13840 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71101", + "name": "N300K모터", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 490, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13841 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71102", + "name": "N400K모터", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 491, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13842 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71103", + "name": "N500K모터", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 492, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13843 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71104", + "name": "N600K모터", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 493, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13844 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71105", + "name": "N800K모터", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 494, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13845 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71201", + "name": "N300K모터(방범)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 495, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13846 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71202", + "name": "N400K모터(방범)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 496, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13847 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71203", + "name": "N500K모터(방범)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 497, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13848 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71204", + "name": "N600K모터(방범)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 498, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13849 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71205", + "name": "N800K모터(방범)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 499, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13850 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71300", + "name": "KD(무선)모터150Kg단상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 500, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13851 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71301", + "name": "KD(무선)모터300Kg단상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 501, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13852 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71302", + "name": "KD(무선)모터400Kg단상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 502, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13853 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71303", + "name": "KD(무선)모터500Kg단상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 503, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13854 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71304", + "name": "KD(무선)모터600Kg단상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 504, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13855 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71305", + "name": "KD(무선)모터800Kg단상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1∅220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 505, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13856 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71600", + "name": "N150K모터", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 506, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13857 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71601", + "name": "KD(무선)모터300Kg삼상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 507, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13858 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71602", + "name": "N400K모터", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 508, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13859 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71603", + "name": "KD(무선)모터500Kg삼상", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 509, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13860 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71604", + "name": "N600K모터", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 510, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13861 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71605", + "name": "N800K모터", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 511, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13862 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71606", + "name": "N1000K모터", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 512, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13863 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71701", + "name": "N300K모터(방범)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 513, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13864 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71702", + "name": "N400K모터(방범)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 514, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13865 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71703", + "name": "N500K모터(방범)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 515, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13866 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71704", + "name": "N600K모터(방범)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 516, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13867 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71705", + "name": "N800K모터(방범)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 517, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13868 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71706", + "name": "N1000K모터(방범)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 518, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13869 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71800", + "name": "KD(무선)모터150Kg삼상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 519, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13870 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71801", + "name": "무선모터 300삼상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 520, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13871 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71802", + "name": "KD(무선)모터400Kg삼상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 521, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13872 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71803", + "name": "KD(무선)모터400Kg삼상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 522, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13873 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71804", + "name": "KD(무선)모터600Kg삼상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 523, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13874 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71805", + "name": "KD(무선)모터800Kg삼상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 524, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13875 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71806", + "name": "KD(무선)모터1000Kg삼상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 525, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13876 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N71807", + "name": "KD(무선)모터1500Kg삼상", + "unit": " ", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3∅380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 526, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13877 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N72001", + "name": "브라켓트300-400K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"(380*180)3\\\"~4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 527, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13878 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N72002", + "name": "브라켓트300-400K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"(380*180)3\\\"~5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 528, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13879 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N72003", + "name": "브라켓트300-400K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"(380*180)2\\\"~6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 529, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13880 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N72101", + "name": "N브라켓트300-600K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3\\\"~4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 530, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13881 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N72102", + "name": "N브라켓트300-600K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3\\\"~5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 531, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13882 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N72601", + "name": "N브라켓트300-400K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 532, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13883 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N72602", + "name": "N브라켓트300-400K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 533, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13884 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N72603", + "name": "N브라켓트500-600K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 534, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13885 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N72604", + "name": "N브라켓트500-600K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 535, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13886 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N72605", + "name": "브라켓트800-1000K", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 536, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13887 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N73101", + "name": "N연동 제어기", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"매립형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 537, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13888 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N73102", + "name": "N연동 제어기", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"노출형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 538, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13889 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N73201", + "name": "무선연동 제어기", + "unit": " ", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"매립형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 539, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13890 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N73202", + "name": "무선연동 제어기", + "unit": " ", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"노출형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 540, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13891 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N73601", + "name": "N방범스위치", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"본채\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 541, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13892 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N73602", + "name": "N방범스위치카바", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"노출형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 542, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13893 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N73603", + "name": "N방범스위치카바", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"매립형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 543, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13894 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N73604", + "name": "N방범스위치리모컨", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4구\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 544, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13895 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N74101", + "name": "N컨트롤 300K", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 545, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13896 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N74102", + "name": "N컨트롤 400K", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 546, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13897 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N74103", + "name": "N컨트롤 600K", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 547, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13898 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N74104", + "name": "N컨트롤 700K", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 548, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13899 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N74105", + "name": "N컨트롤 800K", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 549, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13900 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N74106", + "name": "N컨트롤 삼상", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 550, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13901 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N74201", + "name": "N컨트롤 기판", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"220V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 551, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13902 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N74202", + "name": "N컨트롤 기판", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"380V\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 552, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13903 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N74203", + "name": "N제어기 기판", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"본체\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 553, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13904 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N74204", + "name": "N제어기 기판", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"스위치\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 554, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13905 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N74205", + "name": "N방범스위치 기판", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"리모컨형\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 555, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13906 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N75101", + "name": "N안전리미트", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"상부\", \"item_div\": \"[제품]\", \"Part_type\": \"구매 부품(Purchased Part)\", \"legacy_num\": 556, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13907 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N75201", + "name": "N6각주머니", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"3\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 557, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13908 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N75202", + "name": "N6각주머니", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 558, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13909 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N75203", + "name": "N6각주머니", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"5\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 559, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13910 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N75204", + "name": "N6각주머니", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6\\\"\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 560, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13911 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "N76101", + "name": "카다로크", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2020버전\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 561, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13912 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "R0001", + "name": "BS 샤우드 3인치", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 562, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13913 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "R0002", + "name": "BS 샤우드 4인치", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 563, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13914 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "R0003", + "name": "BS 샤우드 5인치", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 564, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13915 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "R0004", + "name": "BS 샤우드 6인치", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 565, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13916 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "R0005", + "name": "BS 샤우드 8인치", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 566, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13917 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "R0006", + "name": "KS 샤우드 10인치", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[부재료]\", \"legacy_num\": 567, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"6000\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13918 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "R0007", + "name": "샤우드3인치", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"300\", \"item_div\": \"[부재료]\", \"legacy_num\": 568, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"300\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13919 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "R0008", + "name": "BS 샤우드 4인치", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"4500\", \"item_div\": \"[부재료]\", \"legacy_num\": 569, \"107_item_name\": \"샤우드\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \"4500\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13920 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0000", + "name": "방화스크린(일반형)", + "unit": "㎡", + "category_id": 311, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 570, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13921 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0001", + "name": "국민방화스크린(일체형)", + "unit": "㎡", + "category_id": 311, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 571, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13922 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0002", + "name": "방화스크린셔터 원단", + "unit": "㎡", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 572, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13923 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S00020", + "name": "비상문(실리카)", + "unit": " ", + "category_id": 365, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 573, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13924 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0003", + "name": "제연스크린", + "unit": "㎡", + "category_id": 311, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1000\", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 574, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13925 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0004", + "name": "방범용철재스라트1.2T", + "unit": "㎡", + "category_id": 342, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 575, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13926 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0005", + "name": "방화용철재스라트1.6T", + "unit": "㎡", + "category_id": 342, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 576, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13927 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0006", + "name": "영사창", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 577, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13928 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0007", + "name": "망입유리", + "unit": "M", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 578, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13929 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "S0008", + "name": "실리카원단(슬리팅)", + "unit": "M", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1220mm\", \"item_div\": \"[원재료]\", \"legacy_num\": 579, \"100_item_name\": \"원단류\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13930 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0009", + "name": "내풍압셔터", + "unit": "㎡", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 580, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13931 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "S0010", + "name": "실리카원단(1270)", + "unit": "M", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1270mm\", \"item_div\": \"[원재료]\", \"legacy_num\": 581, \"100_item_name\": \"원단류\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13932 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0011", + "name": "실", + "unit": "타", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 582, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13933 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0012", + "name": "수선비", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 583, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13934 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0019", + "name": "파이프셔터16¢", + "unit": " ", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 584, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13935 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0020", + "name": "파이프셔터19¢", + "unit": " ", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 585, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13936 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0021", + "name": "웨이브셔터", + "unit": " ", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 586, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13937 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0023", + "name": "알미늄셔터0.9T", + "unit": " ", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 587, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13938 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0024", + "name": "내풍압셔터", + "unit": " ", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 588, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13939 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0033", + "name": "제연스크린", + "unit": "㎡", + "category_id": 311, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"1500\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 589, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13940 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0034", + "name": "무기둥셔터(일체형)", + "unit": "㎡", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 590, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13941 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0035", + "name": "무기둥셔터(일반형)", + "unit": "㎡", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 591, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13942 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0036", + "name": "지퍼", + "unit": "M", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 592, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13943 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0037", + "name": "베벨기어(ㄱ자적용)", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 593, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13944 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0038", + "name": "베벨기어(ㅡ자적용)", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 594, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13945 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "S0039", + "name": "이중특수단열셔터", + "unit": " ", + "category_id": 355, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 595, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13946 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "W0001", + "name": "와이어(일반형)", + "unit": " ", + "category_id": 365, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 596, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13947 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "k1098-1", + "name": "근무복(동계-털상의)", + "unit": "벌", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"2XL\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 597, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13948 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "s0013", + "name": "비상문스티커", + "unit": "EA", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 598, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13949 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "s0015", + "name": "제연원단", + "unit": " ", + "category_id": 364, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[원재료]\", \"legacy_num\": 599, \"100_item_name\": \"원단류\", \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13950 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "H0020", + "name": "칼라각파이프30x30x1.4T", + "unit": "EA", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6000\", \"item_div\": \"[상품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 601, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13951 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "90205", + "name": "마환봉", + "unit": "EA", + "category_id": 348, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"6파이3000\", \"item_div\": \"[반제품]\", \"Part_type\": \"조립 부품(Assembly Part)\", \"legacy_num\": 602, \"legacy_source\": \"KDunitprice\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13952 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "800361", + "name": "조인트바", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" 300\", \"item_div\": \"[부재료]\", \"legacy_num\": 603, \"107_item_name\": \"기타\", \"legacy_source\": \"KDunitprice\", \"108_specification_1\": \" 300\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13953 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KSS01-벽면형-SUS", + "name": "KSS01 스크린 SUS마감 벽면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "스크린", + "bom": "[{\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}, {\"quantity\": 2, \"child_item_code\": \"PT-L-BAR\"}, {\"quantity\": 2, \"child_item_code\": \"PT-가이드레일\"}]", + "attributes": "{\"model_name\": \"KSS01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 12}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13954 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KSS01-측면형-SUS", + "name": "KSS01 스크린 SUS마감 측면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "스크린", + "bom": "[{\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}, {\"quantity\": 2, \"child_item_code\": \"PT-L-BAR\"}, {\"quantity\": 2, \"child_item_code\": \"PT-가이드레일\"}]", + "attributes": "{\"model_name\": \"KSS01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 13}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13955 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KSE01-벽면형-SUS", + "name": "KSE01 스크린 SUS마감 벽면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "스크린", + "bom": "[{\"quantity\": 2, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}, {\"quantity\": 2, \"child_item_code\": \"PT-L-BAR\"}]", + "attributes": "{\"model_name\": \"KSE01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 14}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13956 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KSE01-벽면형-EGI", + "name": "KSE01 스크린 EGI마감 벽면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "스크린", + "bom": "[{\"quantity\": 2, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}, {\"quantity\": 2, \"child_item_code\": \"PT-L-BAR\"}]", + "attributes": "{\"model_name\": \"KSE01\", \"legacy_source\": \"models\", \"finishing_type\": \"EGI마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 15}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13957 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KSE01-측면형-SUS", + "name": "KSE01 스크린 SUS마감 측면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "스크린", + "bom": "[{\"quantity\": 2, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}, {\"quantity\": 2, \"child_item_code\": \"PT-L-BAR\"}]", + "attributes": "{\"model_name\": \"KSE01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 16}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13958 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KSE01-측면형-EGI", + "name": "KSE01 스크린 EGI마감 측면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "스크린", + "bom": "[{\"quantity\": 2, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}, {\"quantity\": 2, \"child_item_code\": \"PT-L-BAR\"}]", + "attributes": "{\"model_name\": \"KSE01\", \"legacy_source\": \"models\", \"finishing_type\": \"EGI마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 17}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13959 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KWE01-벽면형-SUS", + "name": "KWE01 스크린 SUS마감 벽면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "스크린", + "bom": "[{\"quantity\": 2, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}, {\"quantity\": 2, \"child_item_code\": \"PT-L-BAR\"}]", + "attributes": "{\"model_name\": \"KWE01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 18}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13960 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KWE01-벽면형-EGI", + "name": "KWE01 스크린 EGI마감 벽면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "스크린", + "bom": "[{\"quantity\": 2, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}, {\"quantity\": 2, \"child_item_code\": \"PT-L-BAR\"}]", + "attributes": "{\"model_name\": \"KWE01\", \"legacy_source\": \"models\", \"finishing_type\": \"EGI마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 19}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13961 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KWE01-측면형-SUS", + "name": "KWE01 스크린 SUS마감 측면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "스크린", + "bom": "[{\"quantity\": 2, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}, {\"quantity\": 2, \"child_item_code\": \"PT-L-BAR\"}]", + "attributes": "{\"model_name\": \"KWE01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 20}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13962 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KWE01-측면형-EGI", + "name": "KWE01 스크린 EGI마감 측면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "스크린", + "bom": "[{\"quantity\": 2, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}, {\"quantity\": 2, \"child_item_code\": \"PT-L-BAR\"}]", + "attributes": "{\"model_name\": \"KWE01\", \"legacy_source\": \"models\", \"finishing_type\": \"EGI마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 21}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13963 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KQTS01-벽면형-SUS", + "name": "KQTS01 철재 SUS마감 벽면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "철재", + "bom": "[{\"quantity\": 1, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}]", + "attributes": "{\"model_name\": \"KQTS01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"철재\", \"legacy_model_id\": 22}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13964 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KQTS01-측면형-SUS", + "name": "KQTS01 철재 SUS마감 측면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "철재", + "bom": "[{\"quantity\": 1, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}]", + "attributes": "{\"model_name\": \"KQTS01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"철재\", \"legacy_model_id\": 23}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13965 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KTE01-측면형-SUS", + "name": "KTE01 철재 SUS마감 측면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "철재", + "bom": "[{\"quantity\": 1, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}]", + "attributes": "{\"model_name\": \"KTE01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"철재\", \"legacy_model_id\": 24}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13966 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KTE01-벽면형-SUS", + "name": "KTE01 철재 SUS마감 벽면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "철재", + "bom": "[{\"quantity\": 1, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}]", + "attributes": "{\"model_name\": \"KTE01\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"철재\", \"legacy_model_id\": 25}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13967 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KTE01-측면형-EGI", + "name": "KTE01 철재 EGI마감 측면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "철재", + "bom": "[{\"quantity\": 1, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}]", + "attributes": "{\"model_name\": \"KTE01\", \"legacy_source\": \"models\", \"finishing_type\": \"EGI마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"철재\", \"legacy_model_id\": 26}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13968 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KTE01-벽면형-EGI", + "name": "KTE01 철재 EGI마감 벽면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "철재", + "bom": "[{\"quantity\": 1, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}]", + "attributes": "{\"model_name\": \"KTE01\", \"legacy_source\": \"models\", \"finishing_type\": \"EGI마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"철재\", \"legacy_model_id\": 27}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13969 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KSS02-측면형-SUS", + "name": "KSS02 스크린 SUS마감 측면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "스크린", + "bom": "[{\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}, {\"quantity\": 2, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 2, \"child_item_code\": \"PT-L-BAR\"}]", + "attributes": "{\"model_name\": \"KSS02\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"측면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 28}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13970 + }, + { + "tenant_id": 287, + "item_type": "FG", + "code": "FG-KSS02-벽면형-SUS", + "name": "KSS02 스크린 SUS마감 벽면형", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": "스크린", + "bom": "[{\"quantity\": 1, \"child_item_code\": \"PT-하단마감재\"}, {\"quantity\": 2, \"child_item_code\": \"PT-가이드레일\"}, {\"quantity\": 2, \"child_item_code\": \"PT-L-BAR\"}]", + "attributes": "{\"model_name\": \"KSS02\", \"legacy_source\": \"models\", \"finishing_type\": \"SUS마감\", \"guiderail_type\": \"벽면형\", \"major_category\": \"스크린\", \"legacy_model_id\": 29}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13971 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-스크린", + "name": "스크린", + "unit": "EA", + "category_id": 311, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"100000.00\", \"legacy_num\": 1, \"legacy_source\": \"item_list\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13972 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-쉐터박스", + "name": "쉐터박스", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"50000.00\", \"legacy_num\": 2, \"legacy_source\": \"item_list\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13973 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-연기장벽", + "name": "연기장벽", + "unit": "EA", + "category_id": 353, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"30000.00\", \"legacy_num\": 3, \"legacy_source\": \"item_list\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13974 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-마구리", + "name": "마구리", + "unit": "EA", + "category_id": 357, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"20000.00\", \"legacy_num\": 4, \"legacy_source\": \"item_list\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13975 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-앵글브라켓", + "name": "앵글브라켓", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"15000.00\", \"legacy_num\": 5, \"legacy_source\": \"item_list\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13976 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-가이드레일", + "name": "가이드레일", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"25000.00\", \"legacy_num\": 6, \"legacy_source\": \"item_list\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13977 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-레일연기", + "name": "레일연기", + "unit": "EA", + "category_id": 353, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"20000.00\", \"legacy_num\": 7, \"legacy_source\": \"item_list\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13978 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-바텀바", + "name": "바텀바", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"15000.00\", \"legacy_num\": 8, \"legacy_source\": \"item_list\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13979 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-메인앵글", + "name": "메인앵글", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"조립 부품(Assembly Part)\", \"base_price\": \"30000.00\", \"legacy_num\": 9, \"legacy_source\": \"item_list\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13980 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-하단마감재", + "name": "하단마감재", + "unit": "EA", + "category_id": 358, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"legacy_source\": \"BDmodels_seconditem\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13981 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-L-BAR", + "name": "L-BAR", + "unit": "EA", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"legacy_source\": \"BDmodels_seconditem\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13982 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-보강평철", + "name": "보강평철", + "unit": "EA", + "category_id": 362, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"legacy_source\": \"BDmodels_seconditem\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13983 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-케이스", + "name": "케이스", + "unit": "EA", + "category_id": 368, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"legacy_source\": \"BDmodels_seconditem\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13984 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-케이스용 연기차단재", + "name": "케이스용 연기차단재", + "unit": "EA", + "category_id": 353, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"legacy_source\": \"BDmodels_seconditem\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13985 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "PT-가이드레일용 연기차단재", + "name": "가이드레일용 연기차단재", + "unit": "EA", + "category_id": 353, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"legacy_source\": \"BDmodels_seconditem\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13986 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-020", + "name": "제어기 노출형", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"노출형\", \"107_item_name\": \"제어기\", \"legacy_source\": \"price_motor\", \"price_category\": \"제어기\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13987 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-021", + "name": "제어기 매립형", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"매립형\", \"107_item_name\": \"제어기\", \"legacy_source\": \"price_motor\", \"price_category\": \"제어기\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13988 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-023", + "name": "방화 콘트롤박스(단상)", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"콘트롤박스(단상)\", \"107_item_name\": \"포장자재\", \"legacy_source\": \"price_motor\", \"price_category\": \"방화\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13989 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-024", + "name": "방화 콘트롤박스(삼상)", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"콘트롤박스(삼상)\", \"107_item_name\": \"포장자재\", \"legacy_source\": \"price_motor\", \"price_category\": \"방화\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13990 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-025", + "name": "방화 콘트롤박스(1500K)", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"콘트롤박스(1500K)\", \"107_item_name\": \"포장자재\", \"legacy_source\": \"price_motor\", \"price_category\": \"방화\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13991 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-026", + "name": "방화 방화스위치", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"방화스위치\", \"107_item_name\": \"방화부품\", \"legacy_source\": \"price_motor\", \"price_category\": \"방화\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13992 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-027", + "name": "방범 콘트롤박스(단상)", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"콘트롤박스(단상)\", \"107_item_name\": \"포장자재\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13993 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-028", + "name": "방범 콘트롤박스(삼상)", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"콘트롤박스(삼상)\", \"107_item_name\": \"포장자재\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13994 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-030", + "name": "방범 스위치커버", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"스위치커버\", \"107_item_name\": \"방범부품\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13995 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-031", + "name": "방범 안전리미트", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"안전리미트\", \"107_item_name\": \"제어기\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13996 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-033", + "name": "방범 리모콘+스위치(최초)", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"리모콘+스위치(최초)\", \"107_item_name\": \"방범부품\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13997 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-034", + "name": "방범 리모콘4구", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"리모콘4구\", \"107_item_name\": \"방범부품\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13998 + }, + { + "tenant_id": 287, + "item_type": "SM", + "code": "PM-035", + "name": "방범 스위치(무선+수신기)", + "unit": "EA", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"price_spec\": \"스위치(무선+수신기)\", \"107_item_name\": \"방범부품\", \"legacy_source\": \"price_motor\", \"price_category\": \"방범\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 13999 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "RM-007", + "name": "신설비상문", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": "", + "bom": null, + "attributes": "{\"raw_name\": \"신설비상문\", \"raw_category\": \"\", \"100_item_name\": \"원단류\", \"legacy_source\": \"price_raw_materials\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14000 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "RM-008", + "name": "제연커튼", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": "", + "bom": null, + "attributes": "{\"raw_name\": \"제연커튼\", \"raw_category\": \"\", \"100_item_name\": \"원단류\", \"legacy_source\": \"price_raw_materials\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14001 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "RM-010", + "name": "화이바원단", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": "", + "bom": null, + "attributes": "{\"raw_name\": \"화이바원단\", \"raw_category\": \"\", \"100_item_name\": \"원단류\", \"legacy_source\": \"price_raw_materials\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14002 + }, + { + "tenant_id": 287, + "item_type": "RM", + "code": "RM-011", + "name": "와이어원단", + "unit": "EA", + "category_id": 364, + "process_type": null, + "item_category": "", + "bom": null, + "attributes": "{\"raw_name\": \"와이어원단\", \"raw_category\": \"\", \"100_item_name\": \"원단류\", \"legacy_source\": \"price_raw_materials\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14003 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-마구리-505*355", + "name": "마구리 505*355", + "unit": "EA", + "category_id": 357, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14004 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-마구리-505*385", + "name": "마구리 505*385", + "unit": "EA", + "category_id": 357, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14005 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-마구리-605*555", + "name": "마구리 605*555", + "unit": "EA", + "category_id": 357, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14006 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-마구리-655*555", + "name": "마구리 655*555", + "unit": "EA", + "category_id": 357, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14007 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-마구리-705*605", + "name": "마구리 705*605", + "unit": "EA", + "category_id": 357, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14008 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-마구리-785*685", + "name": "마구리 785*685", + "unit": "EA", + "category_id": 357, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14009 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-보강평철-50", + "name": "보강평철 50", + "unit": "EA", + "category_id": 362, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14010 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일용 연기차단재", + "name": "가이드레일용 연기차단재", + "unit": "EA", + "category_id": 353, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14011 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-마구리-655*505", + "name": "마구리 655*505", + "unit": "EA", + "category_id": 357, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14012 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-마구리-705*555", + "name": "마구리 705*555", + "unit": "EA", + "category_id": 357, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14013 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-마구리-785*605", + "name": "마구리 785*605", + "unit": "EA", + "category_id": 357, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14014 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-마구리-785*655", + "name": "마구리 785*655", + "unit": "EA", + "category_id": 357, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14015 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-케이스-500*350", + "name": "케이스 500*350", + "unit": "EA", + "category_id": 372, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14016 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-케이스-500*380", + "name": "케이스 500*380", + "unit": "EA", + "category_id": 372, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14017 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-케이스-600*500", + "name": "케이스 600*500", + "unit": "EA", + "category_id": 372, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14018 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-케이스-600*550", + "name": "케이스 600*550", + "unit": "EA", + "category_id": 372, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14019 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-케이스-650*500", + "name": "케이스 650*500", + "unit": "EA", + "category_id": 372, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14020 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-케이스-650*550", + "name": "케이스 650*550", + "unit": "EA", + "category_id": 372, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14021 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-케이스-700*550", + "name": "케이스 700*550", + "unit": "EA", + "category_id": 372, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14022 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-케이스-700*600", + "name": "케이스 700*600", + "unit": "EA", + "category_id": 372, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14023 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-케이스-780*600", + "name": "케이스 780*600", + "unit": "EA", + "category_id": 372, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14024 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-케이스-780*650", + "name": "케이스 780*650", + "unit": "EA", + "category_id": 372, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14025 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-케이스용 연기차단재", + "name": "케이스용 연기차단재", + "unit": "EA", + "category_id": 353, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14026 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-L-BAR-KDSS01-17*100", + "name": "L-BAR KDSS01 17*100", + "unit": "EA", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KDSS01\", \"description\": \"KDSS01용\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14027 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KDSS01-SUS-150*150", + "name": "가이드레일 KDSS01 SUS 150*150", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KDSS01\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14028 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KDSS01-SUS-150*212", + "name": "가이드레일 KDSS01 SUS 150*212", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KDSS01\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14029 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-하단마감재-KDSS01-SUS-140*78", + "name": "하단마감재 KDSS01 SUS 140*78", + "unit": "EA", + "category_id": 358, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KDSS01\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14030 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KQTS01-SUS-130*125", + "name": "가이드레일 KQTS01 SUS 130*125", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KQTS01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14031 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KQTS01-SUS-130*75", + "name": "가이드레일 KQTS01 SUS 130*75", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KQTS01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14032 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-하단마감재-KQTS01-SUS-60*30", + "name": "하단마감재 KQTS01 SUS 60*30", + "unit": "EA", + "category_id": 358, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KQTS01\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14033 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-L-BAR-KSE01-17*60", + "name": "L-BAR KSE01 17*60", + "unit": "EA", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"기존BOM동일\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14034 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KSE01-SUS-120*120", + "name": "가이드레일 KSE01 SUS 120*120", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14035 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KSE01-SUS-120*70", + "name": "가이드레일 KSE01 SUS 120*70", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14036 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KSE01-EGI-120*120", + "name": "가이드레일 KSE01 EGI 120*120", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14037 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KSE01-EGI-120*70", + "name": "가이드레일 KSE01 EGI 120*70", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14038 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-하단마감재-KSE01-SUS-64*43", + "name": "하단마감재 KSE01 SUS 64*43", + "unit": "EA", + "category_id": 358, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"기존BOM 동일,1번 품목\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14039 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-하단마감재-KSE01-EGI-60*40", + "name": "하단마감재 KSE01 EGI 60*40", + "unit": "EA", + "category_id": 358, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSE01\", \"description\": \"기존BOM 동일,1번 품목\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14040 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-L-BAR-KSS01-17*60", + "name": "L-BAR KSS01 17*60", + "unit": "EA", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS01\", \"description\": \"기존BOM동일\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14041 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KSS01-SUS-120*120", + "name": "가이드레일 KSS01 SUS 120*120", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14042 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KSS01-SUS-120*70", + "name": "가이드레일 KSS01 SUS 120*70", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14043 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-하단마감재-KSS01-SUS-60*40", + "name": "하단마감재 KSS01 SUS 60*40", + "unit": "EA", + "category_id": 358, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS01\", \"description\": \"기존BOM 동일,1번 품목\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14044 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-L-BAR-KSS02-17*60", + "name": "L-BAR KSS02 17*60", + "unit": "EA", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS02\", \"description\": \"기존BOM동일\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14045 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KSS02-SUS-120*120", + "name": "가이드레일 KSS02 SUS 120*120", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS02\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14046 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KSS02-SUS-120*70", + "name": "가이드레일 KSS02 SUS 120*70", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS02\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14047 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-하단마감재-KSS02-SUS-60*40", + "name": "하단마감재 KSS02 SUS 60*40", + "unit": "EA", + "category_id": 358, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KSS02\", \"description\": \"기존BOM 동일,1번 품목\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14048 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KTE01-SUS-130*125", + "name": "가이드레일 KTE01 SUS 130*125", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KTE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14049 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KTE01-SUS-130*75", + "name": "가이드레일 KTE01 SUS 130*75", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KTE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14050 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KTE01-EGI-130*125", + "name": "가이드레일 KTE01 EGI 130*125", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KTE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14051 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KTE01-EGI-130*75", + "name": "가이드레일 KTE01 EGI 130*75", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KTE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14052 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-하단마감재-KTE01-SUS-64*34", + "name": "하단마감재 KTE01 SUS 64*34", + "unit": "EA", + "category_id": 358, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KTE01\", \"description\": \"별도마감재 바라시와 원래 전개도와 2mm차이\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14053 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-하단마감재-KTE01-EGI-60*30", + "name": "하단마감재 KTE01 EGI 60*30", + "unit": "EA", + "category_id": 358, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KTE01\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14054 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-L-BAR-KWE01-17*60", + "name": "L-BAR KWE01 17*60", + "unit": "EA", + "category_id": 361, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"기존BOM동일\", \"bdmodel_source\": \"BDmodels\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14055 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KWE01-SUS-120*120", + "name": "가이드레일 KWE01 SUS 120*120", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14056 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KWE01-SUS-120*70", + "name": "가이드레일 KWE01 SUS 120*70", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14057 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KWE01-EGI-120*120", + "name": "가이드레일 KWE01 EGI 120*120", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14058 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-가이드레일-KWE01-EGI-120*70", + "name": "가이드레일 KWE01 EGI 120*70", + "unit": "EA", + "category_id": 352, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"1EA당 단가\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14059 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-하단마감재-KWE01-SUS-64*43", + "name": "하단마감재 KWE01 SUS 64*43", + "unit": "EA", + "category_id": 358, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"기존BOM 동일,1번 품목\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"SUS\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14060 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "BD-하단마감재-KWE01-EGI-60*40", + "name": "하단마감재 KWE01 EGI 60*40", + "unit": "EA", + "category_id": 358, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"Part_type\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"model_name\": \"KWE01\", \"description\": \"기존BOM 동일,1번 품목\", \"bdmodel_source\": \"BDmodels\", \"finishing_type\": \"EGI\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14061 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-220V-150K(S)", + "name": "모터 150K(S) (220V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14062 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-220V-300K(S)", + "name": "모터 300K(S) (220V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14063 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-220V-300K", + "name": "모터 300K (220V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14064 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-220V-400K(S)", + "name": "모터 400K(S) (220V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14065 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-220V-400K", + "name": "모터 400K (220V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14066 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-220V-500K", + "name": "모터 500K (220V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14067 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-220V-600K", + "name": "모터 600K (220V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14068 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-220V-800K", + "name": "모터 800K (220V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"220\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14069 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-380V-150K(S)", + "name": "모터 150K(S) (380V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14070 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-380V-300K(S)", + "name": "모터 300K(S) (380V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14071 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-380V-300K", + "name": "모터 300K (380V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14072 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-380V-400K(S)", + "name": "모터 400K(S) (380V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14073 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-380V-400K", + "name": "모터 400K (380V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14074 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-380V-500K", + "name": "모터 500K (380V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14075 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-380V-600K", + "name": "모터 600K (380V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14076 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-380V-800K", + "name": "모터 800K (380V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14077 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-380V-1000K", + "name": "모터 1000K (380V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14078 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-380V-1500K", + "name": "모터 1500K (380V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14079 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-MOTOR-380V-2000K", + "name": "모터 2000K (380V)", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"380\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14080 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-노출형", + "name": "제어기 노출형", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"제어기\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14081 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-매립형", + "name": "제어기 매립형", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"제어기\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14082 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-뒷박스", + "name": "제어기 뒷박스", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"제어기\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14083 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-방화-콘트롤박스(단상)", + "name": "방화 콘트롤박스(단상)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방화\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14084 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-방화-콘트롤박스(삼상)", + "name": "방화 콘트롤박스(삼상)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방화\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14085 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-방화-콘트롤박스(1500K)", + "name": "방화 콘트롤박스(1500K)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방화\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14086 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-방화-방화스위치", + "name": "방화 방화스위치", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방화\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14087 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-방범-콘트롤박스(단상)", + "name": "방범 콘트롤박스(단상)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14088 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-방범-콘트롤박스(삼상)", + "name": "방범 콘트롤박스(삼상)", + "unit": "EA", + "category_id": 350, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14089 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-방범-방범스위치", + "name": "방범 방범스위치", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14090 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-방범-스위치커버", + "name": "방범 스위치커버", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14091 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-방범-안전리미트", + "name": "방범 안전리미트", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14092 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-방범-리모콘+스위치(최초)", + "name": "방범 리모콘+스위치(최초)", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14093 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-방범-리모콘4구", + "name": "방범 리모콘4구", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14094 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-CTRL-방범-스위치(무선+수신기)", + "name": "방범 스위치(무선+수신기)", + "unit": "EA", + "category_id": 329, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_motor\", \"voltage\": \"방범\", \"Part_type\": \"구매 부품(Purchased Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14095 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-RAW-슬랫-방화", + "name": "슬랫 방화", + "unit": "EA", + "category_id": 342, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_raw_materials\", \"category\": \"슬랫\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14096 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-RAW-슬랫-방범", + "name": "슬랫 방범", + "unit": "EA", + "category_id": 342, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_raw_materials\", \"category\": \"슬랫\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14097 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-RAW-슬랫-조인트바", + "name": "슬랫 조인트바", + "unit": "EA", + "category_id": 345, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_raw_materials\", \"category\": \"슬랫\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": "{\"lot_managed\": true, \"consumption_method\": \"auto\", \"production_source\": \"self_produced\", \"input_tracking\": false}", + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14098 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-RAW-스크린-실리카", + "name": "스크린 실리카", + "unit": "EA", + "category_id": 365, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_raw_materials\", \"category\": \"스크린\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14099 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-RAW-스크린-화이바", + "name": "스크린 화이바", + "unit": "EA", + "category_id": 365, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_raw_materials\", \"category\": \"스크린\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14100 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-RAW-스크린-와이어", + "name": "스크린 와이어", + "unit": "EA", + "category_id": 365, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_raw_materials\", \"category\": \"스크린\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14101 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-3-0.3", + "name": "감기샤프트 3인치 0.3m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14102 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-3-0.5", + "name": "감기샤프트 3인치 0.5m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14103 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-3-6", + "name": "감기샤프트 3인치 6m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14104 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-4-0.3", + "name": "감기샤프트 4인치 0.3m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14105 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-4-3", + "name": "감기샤프트 4인치 3m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14106 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-4-4.5", + "name": "감기샤프트 4인치 4.5m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14107 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-4-6", + "name": "감기샤프트 4인치 6m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14108 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-5-6", + "name": "감기샤프트 5인치 6m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14109 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-5-7", + "name": "감기샤프트 5인치 7m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14110 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-5-8.2", + "name": "감기샤프트 5인치 8.2m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14111 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-6-3", + "name": "감기샤프트 6인치 3m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14112 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-6-6", + "name": "감기샤프트 6인치 6m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14113 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-6-7", + "name": "감기샤프트 6인치 7m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14114 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-6-8", + "name": "감기샤프트 6인치 8m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14115 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-8-6", + "name": "감기샤프트 8인치 6m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14116 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-8-8.2", + "name": "감기샤프트 8인치 8.2m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14117 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-10-6", + "name": "감기샤프트 10인치 6m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14118 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SHAFT-12-6", + "name": "감기샤프트 12인치 6m", + "unit": "EA", + "category_id": 347, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_shaft\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14119 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-PIPE-1.4-3000", + "name": "각파이프 1.4T 3000mm", + "unit": "EA", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"50*30\", \"source\": \"price_pipe\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14120 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-PIPE-1.4-6000", + "name": "각파이프 1.4T 6000mm", + "unit": "EA", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"50*30\", \"source\": \"price_pipe\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14121 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-PIPE-2-6000", + "name": "각파이프 2T 6000mm", + "unit": "EA", + "category_id": 346, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \"100*50\", \"source\": \"price_pipe\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14122 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-ANGLE-MAIN-앵글3T-2.5", + "name": "앵글 앵글3T 2.5m", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14123 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-ANGLE-MAIN-앵글3T-10", + "name": "앵글 앵글3T 10m", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14124 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-ANGLE-MAIN-앵글4T-2.5", + "name": "앵글 앵글4T 2.5m", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14125 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-ANGLE-MAIN-앵글4T-10", + "name": "앵글 앵글4T 10m", + "unit": "EA", + "category_id": 374, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14126 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-ANGLE-BRACKET-스크린용", + "name": "모터받침 앵글 스크린용", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"구매 부품(Purchased Part)\", \"angle_type\": \"앵글3T\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14127 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-ANGLE-BRACKET-철제300K", + "name": "모터받침 앵글 철제300K", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"구매 부품(Purchased Part)\", \"angle_type\": \"앵글4T\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14128 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-ANGLE-BRACKET-철제400K", + "name": "모터받침 앵글 철제400K", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"구매 부품(Purchased Part)\", \"angle_type\": \"앵글4T\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14129 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-ANGLE-BRACKET-철제800K", + "name": "모터받침 앵글 철제800K", + "unit": "EA", + "category_id": 349, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_angle\", \"Part_type\": \"구매 부품(Purchased Part)\", \"angle_type\": \"앵글4T\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14130 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SMOKE-레일용", + "name": "연기차단재 레일용", + "unit": "EA", + "category_id": 353, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_smokeban\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14131 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-SMOKE-케이스용", + "name": "연기차단재 케이스용", + "unit": "EA", + "category_id": 353, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"source\": \"price_smokeban\", \"Part_type\": \"조립 부품(Assembly Part)\"}", + "attributes_archive": null, + "options": null, + "description": null, + "is_active": 1, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 14132 + }, + { + "tenant_id": 287, + "item_type": "PT", + "code": "EST-INSPECTION", + "name": "검사비", + "unit": "EA", + "category_id": 366, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": null, + "attributes_archive": null, + "options": null, + "description": "견적 검사비", + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-19 14:30:00", + "updated_at": "2026-02-19 14:30:00", + "deleted_at": null, + "_original_id": 14133 + } ] \ No newline at end of file diff --git a/lang/en/error.php b/lang/en/error.php index f168d1e..576ec04 100644 --- a/lang/en/error.php +++ b/lang/en/error.php @@ -38,6 +38,12 @@ 'invalid_status_transition' => 'Cannot change status from the current state.', ], + // BOM related + 'bom' => [ + 'line_not_found' => 'BOM line not found.', + 'invalid_child_items' => 'Invalid child item IDs: :ids', + ], + // BOM template related 'bom_template' => [ 'not_found' => 'No applicable BOM template found.', diff --git a/lang/ko/error.php b/lang/ko/error.php index 66d27f3..f029c2b 100644 --- a/lang/ko/error.php +++ b/lang/ko/error.php @@ -45,6 +45,12 @@ 'invalid_status_transition' => '현재 상태에서는 변경할 수 없습니다.', ], + // BOM 관련 + 'bom' => [ + 'line_not_found' => 'BOM 라인을 찾을 수 없습니다.', + 'invalid_child_items' => '존재하지 않는 품목이 포함되어 있습니다. (ID: :ids)', + ], + // BOM 템플릿 관련 'bom_template' => [ 'not_found' => '적용 가능한 BOM 템플릿을 찾을 수 없습니다.',