From fa07e5b58a8ec11e8170250aae33eb8ff52bc90b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Wed, 4 Feb 2026 22:47:03 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EA=B2=BD=EB=8F=99=EA=B8=B0=EC=97=85=20?= =?UTF-8?q?=ED=92=88=EB=AA=A9=20=EA=B8=B0=EC=A4=80=20=EB=8D=B0=EC=9D=B4?= =?UTF-8?q?=ED=84=B0=20=EB=B0=B0=ED=8F=AC=EC=9A=A9=20=EC=8B=9C=EB=8D=94=20?= =?UTF-8?q?=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - ExportItemMasterDataCommand: tenant_id=287 데이터를 JSON으로 추출 - KyungdongItemMasterSeeder: JSON 기반 DELETE+재삽입 시더 - Phase 1: item_pages/sections/fields + entity_relationships - Phase 2: categories(depth순) + items(배치500건) - Phase 3: item_details + prices - ID 매핑으로 환경별 충돌 없음, 트랜잭션 안전 - 8개 JSON 데이터 파일 포함 (총 약 1.5MB) - .gitignore에 시더 데이터 예외 추가 Co-Authored-By: Claude Opus 4.5 --- .gitignore | 3 + .../Commands/ExportItemMasterDataCommand.php | 202 + .../Kyungdong/KyungdongItemMasterSeeder.php | 621 + .../seeders/data/kyungdong/categories.json | 1298 + .../data/kyungdong/entity_relationships.json | 1352 + .../seeders/data/kyungdong/item_details.json | 4118 +++ .../seeders/data/kyungdong/item_fields.json | 2180 ++ .../seeders/data/kyungdong/item_pages.json | 82 + .../seeders/data/kyungdong/item_sections.json | 189 + database/seeders/data/kyungdong/items.json | 17942 +++++++++++++ database/seeders/data/kyungdong/prices.json | 21842 ++++++++++++++++ 11 files changed, 49829 insertions(+) create mode 100644 app/Console/Commands/ExportItemMasterDataCommand.php create mode 100644 database/seeders/Kyungdong/KyungdongItemMasterSeeder.php create mode 100644 database/seeders/data/kyungdong/categories.json create mode 100644 database/seeders/data/kyungdong/entity_relationships.json create mode 100644 database/seeders/data/kyungdong/item_details.json create mode 100644 database/seeders/data/kyungdong/item_fields.json create mode 100644 database/seeders/data/kyungdong/item_pages.json create mode 100644 database/seeders/data/kyungdong/item_sections.json create mode 100644 database/seeders/data/kyungdong/items.json create mode 100644 database/seeders/data/kyungdong/prices.json diff --git a/.gitignore b/.gitignore index 507cfbc..08cf66e 100644 --- a/.gitignore +++ b/.gitignore @@ -153,4 +153,7 @@ _ide_helper_models.php !**/data/ # 그리고 .gitkeep은 예외로 추적 !**/data/.gitkeep +# 시더 데이터 JSON은 추적 +!database/seeders/data/kyungdong/ +!database/seeders/data/kyungdong/** storage/secrets/ diff --git a/app/Console/Commands/ExportItemMasterDataCommand.php b/app/Console/Commands/ExportItemMasterDataCommand.php new file mode 100644 index 0000000..548e0fb --- /dev/null +++ b/app/Console/Commands/ExportItemMasterDataCommand.php @@ -0,0 +1,202 @@ +outputPath = database_path('seeders/data/kyungdong'); + + if (! is_dir($this->outputPath)) { + mkdir($this->outputPath, 0755, true); + } + + $this->info('경동기업 품목 기준 데이터 추출 시작 (tenant_id=' . self::TENANT_ID . ')'); + $this->newLine(); + + $this->exportItemPages(); + $this->exportItemSections(); + $this->exportItemFields(); + $this->exportEntityRelationships(); + $this->exportCategories(); + $this->exportItems(); + $this->exportItemDetails(); + $this->exportPrices(); + + $this->newLine(); + $this->info('추출 완료! 경로: ' . $this->outputPath); + + return self::SUCCESS; + } + + private function exportItemPages(): void + { + $rows = DB::table('item_pages') + ->where('tenant_id', self::TENANT_ID) + ->whereNull('deleted_at') + ->get() + ->map(fn ($row) => $this->addOriginalId($row)) + ->toArray(); + + $this->writeJson('item_pages.json', $rows); + $this->info(" item_pages: " . count($rows) . "건"); + } + + private function exportItemSections(): void + { + $rows = DB::table('item_sections') + ->where('tenant_id', self::TENANT_ID) + ->whereNull('deleted_at') + ->get() + ->map(fn ($row) => $this->addOriginalId($row)) + ->toArray(); + + $this->writeJson('item_sections.json', $rows); + $this->info(" item_sections: " . count($rows) . "건"); + } + + private function exportItemFields(): void + { + $rows = DB::table('item_fields') + ->where('tenant_id', self::TENANT_ID) + ->whereNull('deleted_at') + ->get() + ->map(fn ($row) => $this->addOriginalId($row)) + ->toArray(); + + $this->writeJson('item_fields.json', $rows); + $this->info(" item_fields: " . count($rows) . "건"); + } + + private function exportEntityRelationships(): void + { + // 참조 대상이 실제 존재하는 것만 추출 + $validPageIds = DB::table('item_pages')->where('tenant_id', self::TENANT_ID)->whereNull('deleted_at')->pluck('id'); + $validSectionIds = DB::table('item_sections')->where('tenant_id', self::TENANT_ID)->whereNull('deleted_at')->pluck('id'); + $validFieldIds = DB::table('item_fields')->where('tenant_id', self::TENANT_ID)->whereNull('deleted_at')->pluck('id'); + $validBomIds = DB::table('item_bom_items')->where('tenant_id', self::TENANT_ID)->whereNull('deleted_at')->pluck('id'); + + $validIds = [ + 'page' => $validPageIds->flip(), + 'section' => $validSectionIds->flip(), + 'field' => $validFieldIds->flip(), + 'bom' => $validBomIds->flip(), + ]; + + $rows = DB::table('entity_relationships') + ->where('tenant_id', self::TENANT_ID) + ->get() + ->filter(function ($row) use ($validIds) { + $parentValid = isset($validIds[$row->parent_type][$row->parent_id]); + $childValid = isset($validIds[$row->child_type][$row->child_id]); + + return $parentValid && $childValid; + }) + ->map(fn ($row) => $this->addOriginalId($row)) + ->values() + ->toArray(); + + $this->writeJson('entity_relationships.json', $rows); + $this->info(" entity_relationships: " . count($rows) . "건"); + } + + private function exportCategories(): void + { + $rows = DB::table('categories') + ->where('tenant_id', self::TENANT_ID) + ->whereNull('deleted_at') + ->orderByRaw('COALESCE(parent_id, 0), sort_order, id') + ->get() + ->map(fn ($row) => $this->addOriginalId($row)) + ->toArray(); + + $this->writeJson('categories.json', $rows); + $this->info(" categories: " . count($rows) . "건"); + } + + private function exportItems(): void + { + $rows = DB::table('items') + ->where('tenant_id', self::TENANT_ID) + ->whereNull('deleted_at') + ->orderBy('id') + ->get() + ->map(fn ($row) => $this->addOriginalId($row)) + ->toArray(); + + $this->writeJson('items.json', $rows); + $this->info(" items: " . count($rows) . "건"); + } + + private function exportItemDetails(): void + { + $itemIds = DB::table('items') + ->where('tenant_id', self::TENANT_ID) + ->whereNull('deleted_at') + ->pluck('id'); + + $rows = DB::table('item_details') + ->whereIn('item_id', $itemIds) + ->get() + ->map(fn ($row) => $this->addOriginalId($row)) + ->toArray(); + + $this->writeJson('item_details.json', $rows); + $this->info(" item_details: " . count($rows) . "건"); + } + + private function exportPrices(): void + { + $rows = DB::table('prices') + ->where('tenant_id', self::TENANT_ID) + ->whereNull('deleted_at') + ->orderBy('id') + ->get() + ->map(fn ($row) => $this->addOriginalId($row)) + ->toArray(); + + $this->writeJson('prices.json', $rows); + $this->info(" prices: " . count($rows) . "건"); + } + + /** + * _original_id 추가 + id 제거 + */ + private function addOriginalId(object $row): array + { + $data = (array) $row; + $data['_original_id'] = $data['id']; + unset($data['id']); + + return $data; + } + + private function writeJson(string $filename, array $data): void + { + $path = $this->outputPath . '/' . $filename; + file_put_contents( + $path, + json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) + ); + } +} diff --git a/database/seeders/Kyungdong/KyungdongItemMasterSeeder.php b/database/seeders/Kyungdong/KyungdongItemMasterSeeder.php new file mode 100644 index 0000000..f983354 --- /dev/null +++ b/database/seeders/Kyungdong/KyungdongItemMasterSeeder.php @@ -0,0 +1,621 @@ + 원본ID → 새ID */ + private array $pageMap = []; + + private array $sectionMap = []; + + private array $fieldMap = []; + + private array $categoryMap = []; + + /** @var array code → 새ID */ + private array $itemMap = []; + + /** 기대 건수 (검증용) */ + private array $expectedCounts = []; + + public function run(): void + { + $this->tenantId = DummyDataSeeder::TENANT_ID; + $this->userId = DummyDataSeeder::USER_ID; + $this->dataPath = database_path('seeders/data/kyungdong'); + + $this->command->info('=== 경동기업 품목 기준 데이터 시더 시작 ==='); + $this->command->info(" tenant_id: {$this->tenantId}"); + $this->command->newLine(); + + DB::transaction(function () { + $this->cleanup(); + + $this->command->info('--- Phase 1: 독립 테이블 ---'); + $this->seedItemPages(); + $this->seedItemSections(); + $this->seedItemFields(); + $this->seedEntityRelationships(); + $this->updateDisplayConditions(); + + $this->command->info('--- Phase 2: 기반 테이블 ---'); + $this->seedCategories(); + $this->seedItems(); + + $this->command->info('--- Phase 3: 종속 테이블 ---'); + $this->seedItemDetails(); + $this->seedPrices(); + }); + + $this->verify(); + $this->printSummary(); + } + + // ────────────────────────────────────────────────────────────────── + // CLEANUP + // ────────────────────────────────────────────────────────────────── + + private function cleanup(): void + { + $this->command->info('CLEANUP: tenant_id=' . $this->tenantId . ' 데이터 삭제'); + + // FK 역순 삭제 + // prices - tenant_id로 직접 삭제 + $c = DB::table('prices')->where('tenant_id', $this->tenantId)->delete(); + $this->command->info(" prices: {$c}건 삭제"); + + // item_details - items를 통해 삭제 + $itemIds = DB::table('items')->where('tenant_id', $this->tenantId)->pluck('id'); + $c = DB::table('item_details')->whereIn('item_id', $itemIds)->delete(); + $this->command->info(" item_details: {$c}건 삭제"); + + // items + $c = DB::table('items')->where('tenant_id', $this->tenantId)->delete(); + $this->command->info(" items: {$c}건 삭제"); + + // categories - 자식 먼저 삭제 + $catIds = DB::table('categories')->where('tenant_id', $this->tenantId)->pluck('id'); + // 자식 (parent_id가 있는 것) 먼저 + DB::table('categories') + ->where('tenant_id', $this->tenantId) + ->whereNotNull('parent_id') + ->delete(); + $c = DB::table('categories')->where('tenant_id', $this->tenantId)->delete(); + $this->command->info(" categories: " . count($catIds) . "건 삭제"); + + // entity_relationships + $c = DB::table('entity_relationships')->where('tenant_id', $this->tenantId)->delete(); + $this->command->info(" entity_relationships: {$c}건 삭제"); + + // item_fields + $c = DB::table('item_fields')->where('tenant_id', $this->tenantId)->delete(); + $this->command->info(" item_fields: {$c}건 삭제"); + + // item_sections + $c = DB::table('item_sections')->where('tenant_id', $this->tenantId)->delete(); + $this->command->info(" item_sections: {$c}건 삭제"); + + // item_pages + $c = DB::table('item_pages')->where('tenant_id', $this->tenantId)->delete(); + $this->command->info(" item_pages: {$c}건 삭제"); + + $this->command->newLine(); + } + + // ────────────────────────────────────────────────────────────────── + // PHASE 1: 독립 테이블 + // ────────────────────────────────────────────────────────────────── + + private function seedItemPages(): void + { + $rows = $this->loadJson('item_pages.json'); + $this->expectedCounts['item_pages'] = count($rows); + + foreach ($rows as $row) { + $originalId = $row['_original_id']; + $data = $this->stripMeta($row); + $data['tenant_id'] = $this->tenantId; + $this->setAuditFields($data); + + $newId = DB::table('item_pages')->insertGetId($data); + $this->pageMap[$originalId] = $newId; + } + + $this->command->info(" item_pages: " . count($rows) . "건 삽입"); + } + + private function seedItemSections(): void + { + $rows = $this->loadJson('item_sections.json'); + $this->expectedCounts['item_sections'] = count($rows); + + foreach ($rows as $row) { + $originalId = $row['_original_id']; + $data = $this->stripMeta($row); + $data['tenant_id'] = $this->tenantId; + $this->setAuditFields($data); + + $newId = DB::table('item_sections')->insertGetId($data); + $this->sectionMap[$originalId] = $newId; + } + + $this->command->info(" item_sections: " . count($rows) . "건 삽입"); + } + + private function seedItemFields(): void + { + $rows = $this->loadJson('item_fields.json'); + $this->expectedCounts['item_fields'] = count($rows); + + foreach ($rows as $row) { + $originalId = $row['_original_id']; + $data = $this->stripMeta($row); + $data['tenant_id'] = $this->tenantId; + $this->setAuditFields($data); + + $newId = DB::table('item_fields')->insertGetId($data); + $this->fieldMap[$originalId] = $newId; + } + + $this->command->info(" item_fields: " . count($rows) . "건 삽입"); + } + + private function seedEntityRelationships(): void + { + $rows = $this->loadJson('entity_relationships.json'); + $this->expectedCounts['entity_relationships'] = count($rows); + $inserted = 0; + + foreach ($rows as $row) { + $data = $this->stripMeta($row); + $data['tenant_id'] = $this->tenantId; + $this->setAuditFields($data); + + // parent_id 매핑 + $data['parent_id'] = $this->mapEntityId($data['parent_type'], $data['parent_id']); + // child_id 매핑 + $data['child_id'] = $this->mapEntityId($data['child_type'], $data['child_id']); + + 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; + } + + DB::table('entity_relationships')->insert($data); + $inserted++; + } + + $this->expectedCounts['entity_relationships'] = $inserted; + $this->command->info(" entity_relationships: {$inserted}건 삽입"); + } + + /** + * item_fields의 display_condition 내 targetFieldIds를 새 ID로 치환 + */ + private function updateDisplayConditions(): void + { + if (empty($this->fieldMap)) { + return; + } + + $fields = DB::table('item_fields') + ->where('tenant_id', $this->tenantId) + ->whereNotNull('display_condition') + ->get(['id', 'display_condition']); + + $updated = 0; + foreach ($fields as $field) { + $condition = json_decode($field->display_condition, true); + if (! is_array($condition)) { + continue; + } + + $changed = false; + $condition = $this->remapDisplayCondition($condition, $changed); + + if ($changed) { + DB::table('item_fields') + ->where('id', $field->id) + ->update(['display_condition' => json_encode($condition)]); + $updated++; + } + } + + if ($updated > 0) { + $this->command->info(" display_condition 후처리: {$updated}건 업데이트"); + } + } + + /** + * display_condition 내 targetFieldIds 재귀적 치환 + */ + private function remapDisplayCondition(array $condition, bool &$changed): array + { + if (isset($condition['targetFieldIds']) && is_array($condition['targetFieldIds'])) { + $newIds = []; + foreach ($condition['targetFieldIds'] as $oldId) { + if (isset($this->fieldMap[$oldId])) { + $newIds[] = $this->fieldMap[$oldId]; + $changed = true; + } else { + $newIds[] = $oldId; + } + } + $condition['targetFieldIds'] = $newIds; + } + + // targetFieldId (단일) 처리 + if (isset($condition['targetFieldId']) && isset($this->fieldMap[$condition['targetFieldId']])) { + $condition['targetFieldId'] = $this->fieldMap[$condition['targetFieldId']]; + $changed = true; + } + + // conditions 배열 재귀 처리 + if (isset($condition['conditions']) && is_array($condition['conditions'])) { + foreach ($condition['conditions'] as $i => $sub) { + $condition['conditions'][$i] = $this->remapDisplayCondition($sub, $changed); + } + } + + return $condition; + } + + // ────────────────────────────────────────────────────────────────── + // PHASE 2: 기반 테이블 + // ────────────────────────────────────────────────────────────────── + + private function seedCategories(): void + { + $rows = $this->loadJson('categories.json'); + $this->expectedCounts['categories'] = count($rows); + + // depth 순 삽입을 위해 parent_id 없는 것 먼저 + $roots = array_filter($rows, fn ($r) => empty($r['parent_id'])); + $children = array_filter($rows, fn ($r) => ! empty($r['parent_id'])); + + // 루트 카테고리 삽입 + foreach ($roots as $row) { + $originalId = $row['_original_id']; + $data = $this->stripMeta($row); + $data['tenant_id'] = $this->tenantId; + $data['parent_id'] = null; + $this->setAuditFields($data); + + $newId = DB::table('categories')->insertGetId($data); + $this->categoryMap[$originalId] = $newId; + } + + // 자식 카테고리 삽입 (여러 depth 처리를 위해 최대 5회 반복) + $remaining = $children; + for ($pass = 0; $pass < 5 && ! empty($remaining); $pass++) { + $nextRemaining = []; + foreach ($remaining as $row) { + $originalId = $row['_original_id']; + $parentOriginalId = $row['parent_id']; + + if (! isset($this->categoryMap[$parentOriginalId])) { + $nextRemaining[] = $row; + continue; + } + + $data = $this->stripMeta($row); + $data['tenant_id'] = $this->tenantId; + $data['parent_id'] = $this->categoryMap[$parentOriginalId]; + $this->setAuditFields($data); + + $newId = DB::table('categories')->insertGetId($data); + $this->categoryMap[$originalId] = $newId; + } + $remaining = $nextRemaining; + } + + if (! empty($remaining)) { + $this->command->warn(" categories: " . count($remaining) . "건 매핑 실패 (depth 초과)"); + } + + $this->command->info(" categories: " . count($this->categoryMap) . "건 삽입"); + } + + private function seedItems(): void + { + $rows = $this->loadJson('items.json'); + $this->expectedCounts['items'] = count($rows); + + $chunks = array_chunk($rows, 500); + $total = 0; + + foreach ($chunks as $chunk) { + $insertData = []; + foreach ($chunk as $row) { + $data = $this->stripMeta($row); + $data['tenant_id'] = $this->tenantId; + $this->setAuditFields($data); + + // category_id 매핑 + if (! empty($data['category_id']) && isset($this->categoryMap[$data['category_id']])) { + $data['category_id'] = $this->categoryMap[$data['category_id']]; + } + + $insertData[] = $data; + } + + DB::table('items')->insert($insertData); + $total += count($insertData); + } + + // code로 itemMap 구축 + $this->itemMap = DB::table('items') + ->where('tenant_id', $this->tenantId) + ->whereNull('deleted_at') + ->pluck('id', 'code') + ->toArray(); + + $this->command->info(" items: {$total}건 삽입 (itemMap: " . count($this->itemMap) . "건)"); + } + + // ────────────────────────────────────────────────────────────────── + // PHASE 3: 종속 테이블 + // ────────────────────────────────────────────────────────────────── + + private function seedItemDetails(): void + { + $rows = $this->loadJson('item_details.json'); + $this->expectedCounts['item_details'] = count($rows); + + // items JSON에서 원본 item_id → code 매핑 구축 + $itemsJson = $this->loadJson('items.json'); + $originalIdToCode = []; + foreach ($itemsJson as $item) { + $originalIdToCode[$item['_original_id']] = $item['code']; + } + + $insertData = []; + $skipped = 0; + + foreach ($rows as $row) { + $data = $this->stripMeta($row); + $originalItemId = $data['item_id']; + + // 원본 item_id → code → 새 item_id + $code = $originalIdToCode[$originalItemId] ?? null; + if ($code === null || ! isset($this->itemMap[$code])) { + $skipped++; + continue; + } + + $data['item_id'] = $this->itemMap[$code]; + $insertData[] = $data; + } + + if (! empty($insertData)) { + foreach (array_chunk($insertData, 500) as $chunk) { + DB::table('item_details')->insert($chunk); + } + } + + if ($skipped > 0) { + $this->command->warn(" item_details: {$skipped}건 매핑 실패 스킵"); + } + + $this->expectedCounts['item_details'] = count($insertData); + $this->command->info(" item_details: " . count($insertData) . "건 삽입"); + } + + private function seedPrices(): void + { + $rows = $this->loadJson('prices.json'); + $this->expectedCounts['prices'] = count($rows); + + // items JSON에서 원본 item_id → code 매핑 구축 + $itemsJson = $this->loadJson('items.json'); + $originalIdToCode = []; + foreach ($itemsJson as $item) { + $originalIdToCode[$item['_original_id']] = $item['code']; + } + + $insertData = []; + $skipped = 0; + + foreach ($rows as $row) { + $data = $this->stripMeta($row); + $data['tenant_id'] = $this->tenantId; + $this->setAuditFields($data); + $originalItemId = $data['item_id']; + + // 원본 item_id → code → 새 item_id + $code = $originalIdToCode[$originalItemId] ?? null; + if ($code === null || ! isset($this->itemMap[$code])) { + $skipped++; + continue; + } + + $data['item_id'] = $this->itemMap[$code]; + $insertData[] = $data; + } + + if (! empty($insertData)) { + foreach (array_chunk($insertData, 500) as $chunk) { + DB::table('prices')->insert($chunk); + } + } + + if ($skipped > 0) { + $this->command->warn(" prices: {$skipped}건 매핑 실패 스킵"); + } + + $this->expectedCounts['prices'] = count($insertData); + $this->command->info(" prices: " . count($insertData) . "건 삽입"); + } + + // ────────────────────────────────────────────────────────────────── + // VERIFY & SUMMARY + // ────────────────────────────────────────────────────────────────── + + private function verify(): void + { + $this->command->newLine(); + $this->command->info('=== 검증 ==='); + + $tables = [ + 'item_pages' => fn () => DB::table('item_pages')->where('tenant_id', $this->tenantId)->whereNull('deleted_at')->count(), + 'item_sections' => fn () => DB::table('item_sections')->where('tenant_id', $this->tenantId)->whereNull('deleted_at')->count(), + 'item_fields' => fn () => DB::table('item_fields')->where('tenant_id', $this->tenantId)->whereNull('deleted_at')->count(), + 'entity_relationships' => fn () => DB::table('entity_relationships')->where('tenant_id', $this->tenantId)->count(), + 'categories' => fn () => DB::table('categories')->where('tenant_id', $this->tenantId)->whereNull('deleted_at')->count(), + 'items' => fn () => DB::table('items')->where('tenant_id', $this->tenantId)->whereNull('deleted_at')->count(), + 'item_details' => fn () => DB::table('item_details')->whereIn('item_id', DB::table('items')->where('tenant_id', $this->tenantId)->pluck('id'))->count(), + 'prices' => fn () => DB::table('prices')->where('tenant_id', $this->tenantId)->whereNull('deleted_at')->count(), + ]; + + $allOk = true; + foreach ($tables as $table => $countFn) { + $actual = $countFn(); + $expected = $this->expectedCounts[$table] ?? '?'; + $status = ($actual == $expected) ? 'OK' : 'MISMATCH'; + + if ($status === 'MISMATCH') { + $allOk = false; + $this->command->error(" {$table}: {$actual}건 (기대: {$expected}) [{$status}]"); + } else { + $this->command->info(" {$table}: {$actual}건 [{$status}]"); + } + } + + // entity_relationships 참조 무결성 검증 + $this->verifyRelationshipIntegrity(); + + if ($allOk) { + $this->command->newLine(); + $this->command->info('모든 검증 통과!'); + } + } + + private function verifyRelationshipIntegrity(): void + { + $relationships = DB::table('entity_relationships') + ->where('tenant_id', $this->tenantId) + ->get(); + + $orphans = 0; + foreach ($relationships as $rel) { + $parentExists = $this->entityExists($rel->parent_type, $rel->parent_id); + $childExists = $this->entityExists($rel->child_type, $rel->child_id); + + if (! $parentExists || ! $childExists) { + $orphans++; + } + } + + if ($orphans > 0) { + $this->command->warn(" entity_relationships 참조 무결성: {$orphans}건 고아 레코드"); + } else { + $this->command->info(" entity_relationships 참조 무결성: OK"); + } + } + + private function entityExists(string $type, int $id): bool + { + return match ($type) { + 'page' => DB::table('item_pages')->where('id', $id)->exists(), + 'section' => DB::table('item_sections')->where('id', $id)->exists(), + 'field' => DB::table('item_fields')->where('id', $id)->exists(), + 'bom' => DB::table('item_bom_items')->where('id', $id)->exists(), + default => false, + }; + } + + 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) . "건"); + } + + // ────────────────────────────────────────────────────────────────── + // HELPERS + // ────────────────────────────────────────────────────────────────── + + private function loadJson(string $filename): array + { + $path = $this->dataPath . '/' . $filename; + + if (! file_exists($path)) { + $this->command->error("JSON 파일 없음: {$path}"); + $this->command->error("먼저 php artisan kyungdong:export-item-master 를 실행하세요."); + + throw new \RuntimeException("JSON 파일 없음: {$path}"); + } + + return json_decode(file_get_contents($path), true); + } + + /** + * _original_id, id, created_at, updated_at, deleted_at 등 메타 제거 + */ + private function stripMeta(array $row): array + { + unset( + $row['_original_id'], + $row['id'], + $row['created_at'], + $row['updated_at'], + $row['deleted_at'], + ); + + return $row; + } + + private function setAuditFields(array &$data): void + { + $now = now(); + $data['created_at'] = $now; + $data['updated_at'] = $now; + + if (isset($data['created_by'])) { + $data['created_by'] = $this->userId; + } + if (isset($data['updated_by'])) { + $data['updated_by'] = $this->userId; + } + + // deleted_by, deleted_at는 항상 제거 + unset($data['deleted_by'], $data['deleted_at']); + } + + /** + * entity type에 따라 원본 ID를 새 ID로 매핑 + */ + private function mapEntityId(string $type, int $originalId): ?int + { + return match ($type) { + 'page' => $this->pageMap[$originalId] ?? null, + 'section' => $this->sectionMap[$originalId] ?? null, + 'field' => $this->fieldMap[$originalId] ?? null, + default => $originalId, // bom 등은 그대로 + }; + } +} diff --git a/database/seeders/data/kyungdong/categories.json b/database/seeders/data/kyungdong/categories.json new file mode 100644 index 0000000..13355c6 --- /dev/null +++ b/database/seeders/data/kyungdong/categories.json @@ -0,0 +1,1298 @@ +[ + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_type", + "profile_code": null, + "code": "PROD", + "name": "완제품", + "is_active": 1, + "sort_order": 1, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 303 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "process_type", + "profile_code": null, + "code": "ETC", + "name": "기타", + "is_active": 1, + "sort_order": 1, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 304 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_feature1", + "profile_code": null, + "code": "SCRN", + "name": "스크린용", + "is_active": 1, + "sort_order": 1, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 305 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_feature2", + "profile_code": null, + "code": "EGI", + "name": "EGI", + "is_active": 1, + "sort_order": 1, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 306 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "account_type", + "profile_code": null, + "code": "ACC_RAW", + "name": "원재료", + "is_active": 1, + "sort_order": 1, + "description": "계정코드:0", + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 307 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "procurement_type", + "profile_code": null, + "code": "BUY", + "name": "구매", + "is_active": 1, + "sort_order": 1, + "description": "조달코드:0", + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 308 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_group", + "profile_code": null, + "code": "SCREEN", + "name": "스크린", + "is_active": 1, + "sort_order": 1, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 309 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "estimate", + "profile_code": "estimate_root", + "code": "fire_shutter_estimate", + "name": "방화셔터 견적", + "is_active": 1, + "sort_order": 1, + "description": "방화셔터 견적 루트 카테고리", + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 310 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "BODY", + "name": "본체", + "is_active": 1, + "sort_order": 1, + "description": null, + "created_by": null, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 311 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "SILICA_BODY", + "name": "실리카본체", + "is_active": 1, + "sort_order": 1, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 312 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_type", + "profile_code": null, + "code": "RAW", + "name": "원자재", + "is_active": 1, + "sort_order": 2, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 313 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "process_type", + "profile_code": null, + "code": "BEND", + "name": "절곡", + "is_active": 1, + "sort_order": 2, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 314 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_feature1", + "profile_code": null, + "code": "STEEL", + "name": "철재용", + "is_active": 1, + "sort_order": 2, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 315 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_feature2", + "profile_code": null, + "code": "SUS", + "name": "SUS", + "is_active": 1, + "sort_order": 2, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 316 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "account_type", + "profile_code": null, + "code": "ACC_SUB", + "name": "부재료", + "is_active": 1, + "sort_order": 2, + "description": "계정코드:1", + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 317 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "procurement_type", + "profile_code": null, + "code": "MAKE", + "name": "생산", + "is_active": 1, + "sort_order": 2, + "description": "조달코드:1", + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 318 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_group", + "profile_code": null, + "code": "SLAT", + "name": "슬랫", + "is_active": 1, + "sort_order": 2, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 319 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "BENDING", + "name": "절곡품", + "is_active": 1, + "sort_order": 2, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 320 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "WIRE_BODY", + "name": "와이어본체", + "is_active": 1, + "sort_order": 2, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 321 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_type", + "profile_code": null, + "code": "SEMI", + "name": "반제품", + "is_active": 1, + "sort_order": 3, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 322 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "process_type", + "profile_code": null, + "code": "SLAT", + "name": "슬랫", + "is_active": 1, + "sort_order": 3, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 323 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_feature1", + "profile_code": null, + "code": "COMMON", + "name": "공용", + "is_active": 1, + "sort_order": 3, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 324 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_feature2", + "profile_code": null, + "code": "EGI_SUS", + "name": "EGI+SUS", + "is_active": 1, + "sort_order": 3, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 325 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "account_type", + "profile_code": null, + "code": "ACC_PROD", + "name": "제품", + "is_active": 1, + "sort_order": 3, + "description": "계정코드:2", + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 326 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "procurement_type", + "profile_code": null, + "code": "PHANTOM", + "name": "Phantom", + "is_active": 1, + "sort_order": 3, + "description": "조달코드:8", + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 327 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_group", + "profile_code": null, + "code": "SUB", + "name": "부자재", + "is_active": 1, + "sort_order": 3, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 328 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "MOTOR_CTRL", + "name": "모터 & 제어기", + "is_active": 1, + "sort_order": 3, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 329 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "FIBER_BODY", + "name": "화이바본체", + "is_active": 1, + "sort_order": 3, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 330 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_type", + "profile_code": null, + "code": "SUB", + "name": "부자재", + "is_active": 1, + "sort_order": 4, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 331 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "process_type", + "profile_code": null, + "code": "SCRN", + "name": "스크린", + "is_active": 1, + "sort_order": 4, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 332 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_feature1", + "profile_code": null, + "code": "SILICA", + "name": "실리카용", + "is_active": 1, + "sort_order": 4, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 333 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_feature2", + "profile_code": null, + "code": "ETC", + "name": "기타", + "is_active": 1, + "sort_order": 4, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 334 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "account_type", + "profile_code": null, + "code": "ACC_SEMI", + "name": "반제품", + "is_active": 1, + "sort_order": 4, + "description": "계정코드:4", + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 335 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_group", + "profile_code": null, + "code": "MOTOR", + "name": "모터", + "is_active": 1, + "sort_order": 4, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 336 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "ACCESSORY", + "name": "부자재", + "is_active": 1, + "sort_order": 4, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 337 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "COLUMNLESS_BODY", + "name": "무기둥본체", + "is_active": 1, + "sort_order": 4, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 338 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "process_type", + "profile_code": null, + "code": "MOTOR", + "name": "모터", + "is_active": 1, + "sort_order": 5, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 339 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_feature1", + "profile_code": null, + "code": "WIRE", + "name": "와이어용", + "is_active": 1, + "sort_order": 5, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 340 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_group", + "profile_code": null, + "code": "BEND", + "name": "절곡", + "is_active": 1, + "sort_order": 5, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 341 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "SLAT_BODY", + "name": "슬랫본체", + "is_active": 1, + "sort_order": 5, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 342 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "process_type", + "profile_code": null, + "code": "FORM", + "name": "포밍", + "is_active": 1, + "sort_order": 6, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 343 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_group", + "profile_code": null, + "code": "FORM", + "name": "포밍", + "is_active": 1, + "sort_order": 6, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 344 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "JOINT_BAR", + "name": "조인트바", + "is_active": 1, + "sort_order": 6, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 345 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "SQUARE_PIPE", + "name": "각파이프", + "is_active": 1, + "sort_order": 7, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 346 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "WINDING_SHAFT", + "name": "감기샤프트", + "is_active": 1, + "sort_order": 8, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 347 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "ROUND_BAR", + "name": "환봉", + "is_active": 1, + "sort_order": 10, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 348 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "MOTOR_SET", + "name": "모터세트", + "is_active": 1, + "sort_order": 11, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 349 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "INTERLOCK_CTRL", + "name": "연동제어기", + "is_active": 1, + "sort_order": 12, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 350 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "EMBED_BACK_BOX", + "name": "매립뒷박스", + "is_active": 1, + "sort_order": 13, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 351 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "GUIDE_RAIL", + "name": "가이드레일", + "is_active": 1, + "sort_order": 14, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 352 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "SMOKE_SEAL", + "name": "연기차단재", + "is_active": 1, + "sort_order": 15, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 353 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "FLOOR_CUT_PLATE", + "name": "바닥절단판", + "is_active": 1, + "sort_order": 16, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 354 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "SHUTTER_BOX", + "name": "셔터박스", + "is_active": 1, + "sort_order": 17, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 355 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "TOP_COVER", + "name": "상부덮개", + "is_active": 1, + "sort_order": 18, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 356 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "END_PLATE", + "name": "마구리", + "is_active": 1, + "sort_order": 19, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 357 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "BOTTOM_TRIM", + "name": "하단마감재", + "is_active": 1, + "sort_order": 20, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 358 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "HAJANG_BAR", + "name": "하장바", + "is_active": 1, + "sort_order": 21, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 359 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "SPECIAL_TRIM", + "name": "별도마감재", + "is_active": 1, + "sort_order": 22, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 360 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "L_BAR", + "name": "엘바", + "is_active": 1, + "sort_order": 23, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 361 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "REINF_FLAT_BAR", + "name": "보강평철", + "is_active": 1, + "sort_order": 24, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 362 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "WEIGHT_FLAT_BAR", + "name": "무게평철", + "is_active": 1, + "sort_order": 25, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 363 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "RAW_MATERIAL", + "name": "원자재", + "is_active": 1, + "sort_order": 26, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 364 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "FABRIC", + "name": "원단류", + "is_active": 1, + "sort_order": 27, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 365 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "SERVICE", + "name": "서비스\/기타", + "is_active": 1, + "sort_order": 28, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 366 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "GASKET", + "name": "가스켓", + "is_active": 1, + "sort_order": 29, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 367 + }, + { + "tenant_id": 287, + "parent_id": null, + "code_group": "item_category", + "profile_code": null, + "code": "MISC_PART", + "name": "기타부품", + "is_active": 1, + "sort_order": 30, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 368 + }, + { + "tenant_id": 287, + "parent_id": 310, + "code_group": "estimate", + "profile_code": "screen_category", + "code": "screen_product", + "name": "스크린 제품", + "is_active": 1, + "sort_order": 1, + "description": "실리카\/와이어 스크린 제품 카테고리", + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 369 + }, + { + "tenant_id": 287, + "parent_id": 310, + "code_group": "estimate", + "profile_code": "steel_category", + "code": "steel_product", + "name": "철재 제품", + "is_active": 1, + "sort_order": 2, + "description": "철재스라트 제품 카테고리", + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 370 + }, + { + "tenant_id": 287, + "parent_id": 320, + "code_group": "item_category", + "profile_code": null, + "code": "BENDING_GUIDE", + "name": "가이드레일", + "is_active": 1, + "sort_order": 1, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 371 + }, + { + "tenant_id": 287, + "parent_id": 320, + "code_group": "item_category", + "profile_code": null, + "code": "BENDING_CASE", + "name": "케이스", + "is_active": 1, + "sort_order": 2, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 372 + }, + { + "tenant_id": 287, + "parent_id": 320, + "code_group": "item_category", + "profile_code": null, + "code": "BENDING_BOTTOM", + "name": "하단마감재", + "is_active": 1, + "sort_order": 3, + "description": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 373 + }, + { + "tenant_id": 287, + "parent_id": 337, + "code_group": "item_category", + "profile_code": null, + "code": "ANGLE", + "name": "앵글", + "is_active": 1, + "sort_order": 9, + "description": null, + "created_by": null, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 374 + } +] \ No newline at end of file diff --git a/database/seeders/data/kyungdong/entity_relationships.json b/database/seeders/data/kyungdong/entity_relationships.json new file mode 100644 index 0000000..1e006f7 --- /dev/null +++ b/database/seeders/data/kyungdong/entity_relationships.json @@ -0,0 +1,1352 @@ +[ + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "page", + "parent_id": 1025, + "child_type": "section", + "child_id": 107, + "order_no": 0, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 239 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 107, + "child_type": "field", + "child_id": 181, + "order_no": 0, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 240 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 107, + "child_type": "field", + "child_id": 182, + "order_no": 1, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 241 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 107, + "child_type": "field", + "child_id": 183, + "order_no": 2, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 242 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 107, + "child_type": "field", + "child_id": 184, + "order_no": 3, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 243 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "page", + "parent_id": 1026, + "child_type": "section", + "child_id": 108, + "order_no": 0, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 244 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 108, + "child_type": "field", + "child_id": 185, + "order_no": 1, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 245 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 108, + "child_type": "field", + "child_id": 186, + "order_no": 2, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 246 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 108, + "child_type": "field", + "child_id": 187, + "order_no": 3, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 247 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 108, + "child_type": "field", + "child_id": 188, + "order_no": 4, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 248 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 108, + "child_type": "field", + "child_id": 189, + "order_no": 5, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 249 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 108, + "child_type": "field", + "child_id": 183, + "order_no": 7, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 250 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 108, + "child_type": "field", + "child_id": 184, + "order_no": 8, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 251 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "page", + "parent_id": 1027, + "child_type": "section", + "child_id": 109, + "order_no": 0, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 252 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 109, + "child_type": "field", + "child_id": 191, + "order_no": 1, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 253 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 109, + "child_type": "field", + "child_id": 183, + "order_no": 6, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 254 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 109, + "child_type": "field", + "child_id": 184, + "order_no": 7, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 255 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "page", + "parent_id": 1028, + "child_type": "section", + "child_id": 110, + "order_no": 0, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 256 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 194, + "order_no": 1, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 257 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 111, + "child_type": "field", + "child_id": 195, + "order_no": 0, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 258 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 111, + "child_type": "field", + "child_id": 183, + "order_no": 1, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 259 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 111, + "child_type": "field", + "child_id": 196, + "order_no": 2, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 260 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "page", + "parent_id": 1028, + "child_type": "section", + "child_id": 114, + "order_no": 4, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 261 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 111, + "child_type": "field", + "child_id": 184, + "order_no": 3, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 262 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 114, + "child_type": "field", + "child_id": 197, + "order_no": 1, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 263 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 114, + "child_type": "field", + "child_id": 198, + "order_no": 2, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 264 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 114, + "child_type": "field", + "child_id": 199, + "order_no": 3, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 265 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 114, + "child_type": "field", + "child_id": 190, + "order_no": 4, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 266 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 112, + "child_type": "field", + "child_id": 200, + "order_no": 0, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 267 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 112, + "child_type": "field", + "child_id": 190, + "order_no": 1, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 268 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 113, + "child_type": "field", + "child_id": 201, + "order_no": 0, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 269 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "page", + "parent_id": 1028, + "child_type": "section", + "child_id": 115, + "order_no": 5, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 270 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 115, + "child_type": "field", + "child_id": 202, + "order_no": 0, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 271 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "page", + "parent_id": 1028, + "child_type": "section", + "child_id": 116, + "order_no": 6, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 272 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 109, + "child_type": "field", + "child_id": 192, + "order_no": 2, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 273 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 109, + "child_type": "field", + "child_id": 193, + "order_no": 3, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 274 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 195, + "order_no": 2, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 275 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 203, + "order_no": 3, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 276 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 204, + "order_no": 4, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 277 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 205, + "order_no": 5, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 278 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 196, + "order_no": 6, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 279 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 206, + "order_no": 7, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 280 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 207, + "order_no": 8, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 281 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 208, + "order_no": 9, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 282 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 209, + "order_no": 10, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 283 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 210, + "order_no": 11, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 284 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 211, + "order_no": 12, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 285 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 212, + "order_no": 13, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 286 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 214, + "order_no": 14, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 287 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 114, + "child_type": "field", + "child_id": 217, + "order_no": 10, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 288 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 216, + "order_no": 15, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 289 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 218, + "order_no": 17, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 290 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 219, + "order_no": 18, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 291 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 221, + "order_no": 19, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 292 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 222, + "order_no": 16, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 293 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "page", + "parent_id": 1029, + "child_type": "section", + "child_id": 117, + "order_no": 0, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 294 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "page", + "parent_id": 1029, + "child_type": "section", + "child_id": 115, + "order_no": 2, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 295 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "page", + "parent_id": 1029, + "child_type": "section", + "child_id": 116, + "order_no": 3, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 296 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 223, + "order_no": 1, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 297 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 224, + "order_no": 2, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 298 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 225, + "order_no": 3, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 299 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 222, + "order_no": 3, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 300 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 221, + "order_no": 4, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 301 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 226, + "order_no": 5, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 302 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 227, + "order_no": 6, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 303 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 228, + "order_no": 7, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 304 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 229, + "order_no": 8, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 305 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 183, + "order_no": 21, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 306 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 110, + "child_type": "field", + "child_id": 230, + "order_no": 20, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 307 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 108, + "child_type": "field", + "child_id": 241, + "order_no": 6, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 308 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 109, + "child_type": "field", + "child_id": 242, + "order_no": 4, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 309 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 243, + "order_no": 9, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 310 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 244, + "order_no": 10, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 311 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 245, + "order_no": 11, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 312 + }, + { + "tenant_id": 287, + "group_id": 1, + "parent_type": "section", + "parent_id": 117, + "child_type": "field", + "child_id": 246, + "order_no": 12, + "metadata": null, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "_original_id": 313 + } +] \ No newline at end of file diff --git a/database/seeders/data/kyungdong/item_details.json b/database/seeders/data/kyungdong/item_details.json new file mode 100644 index 0000000..fab1f97 --- /dev/null +++ b/database/seeders/data/kyungdong/item_details.json @@ -0,0 +1,4118 @@ +[ + { + "item_id": 14004, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "마구리", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "마구리 505*355", + "specification": "505*355", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 542 + }, + { + "item_id": 14005, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "마구리", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "마구리 505*385", + "specification": "505*385", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 543 + }, + { + "item_id": 14006, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "마구리", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "마구리 605*555", + "specification": "605*555", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 544 + }, + { + "item_id": 14007, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "마구리", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "마구리 655*555", + "specification": "655*555", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 545 + }, + { + "item_id": 14008, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "마구리", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "마구리 705*605", + "specification": "705*605", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 546 + }, + { + "item_id": 14009, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "마구리", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "마구리 785*685", + "specification": "785*685", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 547 + }, + { + "item_id": 14010, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "보강평철", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "보강평철 50", + "specification": "50", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 548 + }, + { + "item_id": 14011, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일용 연기차단재", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일용 연기차단재", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 549 + }, + { + "item_id": 14012, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "마구리", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "마구리 655*505", + "specification": "655*505", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 550 + }, + { + "item_id": 14013, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "마구리", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "마구리 705*555", + "specification": "705*555", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 551 + }, + { + "item_id": 14014, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "마구리", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "마구리 785*605", + "specification": "785*605", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 552 + }, + { + "item_id": 14015, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "마구리", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "마구리 785*655", + "specification": "785*655", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 553 + }, + { + "item_id": 14016, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "케이스", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "케이스 500*350", + "specification": "500*350", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 554 + }, + { + "item_id": 14017, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "케이스", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "케이스 500*380", + "specification": "500*380", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 555 + }, + { + "item_id": 14018, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "케이스", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "케이스 600*500", + "specification": "600*500", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 556 + }, + { + "item_id": 14019, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "케이스", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "케이스 600*550", + "specification": "600*550", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 557 + }, + { + "item_id": 14020, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "케이스", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "케이스 650*500", + "specification": "650*500", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 558 + }, + { + "item_id": 14021, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "케이스", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "케이스 650*550", + "specification": "650*550", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 559 + }, + { + "item_id": 14022, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "케이스", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "케이스 700*550", + "specification": "700*550", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 560 + }, + { + "item_id": 14023, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "케이스", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "케이스 700*600", + "specification": "700*600", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 561 + }, + { + "item_id": 14024, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "케이스", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "케이스 780*600", + "specification": "780*600", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 562 + }, + { + "item_id": 14025, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "케이스", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "케이스 780*650", + "specification": "780*650", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 563 + }, + { + "item_id": 14026, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "케이스용 연기차단재", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "케이스용 연기차단재", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 564 + }, + { + "item_id": 14027, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "L-BAR", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "L-BAR KDSS01 17*100", + "specification": "17*100", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 565 + }, + { + "item_id": 14028, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KDSS01 SUS 150*150", + "specification": "150*150", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 566 + }, + { + "item_id": 14029, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KDSS01 SUS 150*212", + "specification": "150*212", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 567 + }, + { + "item_id": 14030, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "하단마감재", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "하단마감재 KDSS01 SUS 140*78", + "specification": "140*78", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 568 + }, + { + "item_id": 14031, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KQTS01 SUS 130*125", + "specification": "130*125", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 569 + }, + { + "item_id": 14032, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KQTS01 SUS 130*75", + "specification": "130*75", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 570 + }, + { + "item_id": 14033, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "하단마감재", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "하단마감재 KQTS01 SUS 60*30", + "specification": "60*30", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 571 + }, + { + "item_id": 14034, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "L-BAR", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "L-BAR KSE01 17*60", + "specification": "17*60", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 572 + }, + { + "item_id": 14035, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KSE01 SUS 120*120", + "specification": "120*120", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 573 + }, + { + "item_id": 14036, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KSE01 SUS 120*70", + "specification": "120*70", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 574 + }, + { + "item_id": 14037, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KSE01 EGI 120*120", + "specification": "120*120", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 575 + }, + { + "item_id": 14038, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KSE01 EGI 120*70", + "specification": "120*70", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 576 + }, + { + "item_id": 14039, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "하단마감재", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "하단마감재 KSE01 SUS 64*43", + "specification": "64*43", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 577 + }, + { + "item_id": 14040, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "하단마감재", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "하단마감재 KSE01 EGI 60*40", + "specification": "60*40", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 578 + }, + { + "item_id": 14041, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "L-BAR", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "L-BAR KSS01 17*60", + "specification": "17*60", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 579 + }, + { + "item_id": 14042, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KSS01 SUS 120*120", + "specification": "120*120", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 580 + }, + { + "item_id": 14043, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KSS01 SUS 120*70", + "specification": "120*70", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 581 + }, + { + "item_id": 14044, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "하단마감재", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "하단마감재 KSS01 SUS 60*40", + "specification": "60*40", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 582 + }, + { + "item_id": 14045, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "L-BAR", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "L-BAR KSS02 17*60", + "specification": "17*60", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 583 + }, + { + "item_id": 14046, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KSS02 SUS 120*120", + "specification": "120*120", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 584 + }, + { + "item_id": 14047, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KSS02 SUS 120*70", + "specification": "120*70", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 585 + }, + { + "item_id": 14048, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "하단마감재", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "하단마감재 KSS02 SUS 60*40", + "specification": "60*40", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 586 + }, + { + "item_id": 14049, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KTE01 SUS 130*125", + "specification": "130*125", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 587 + }, + { + "item_id": 14050, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KTE01 SUS 130*75", + "specification": "130*75", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 588 + }, + { + "item_id": 14051, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KTE01 EGI 130*125", + "specification": "130*125", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 589 + }, + { + "item_id": 14052, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KTE01 EGI 130*75", + "specification": "130*75", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 590 + }, + { + "item_id": 14053, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "하단마감재", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "하단마감재 KTE01 SUS 64*34", + "specification": "64*34", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 591 + }, + { + "item_id": 14054, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "하단마감재", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "하단마감재 KTE01 EGI 60*30", + "specification": "60*30", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 592 + }, + { + "item_id": 14055, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "L-BAR", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "L-BAR KWE01 17*60", + "specification": "17*60", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 593 + }, + { + "item_id": 14056, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KWE01 SUS 120*120", + "specification": "120*120", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 594 + }, + { + "item_id": 14057, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KWE01 SUS 120*70", + "specification": "120*70", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 595 + }, + { + "item_id": 14058, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KWE01 EGI 120*120", + "specification": "120*120", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 596 + }, + { + "item_id": 14059, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "가이드레일", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "가이드레일 KWE01 EGI 120*70", + "specification": "120*70", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 597 + }, + { + "item_id": 14060, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "하단마감재", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "하단마감재 KWE01 SUS 64*43", + "specification": "64*43", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 598 + }, + { + "item_id": 14061, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "bdmodels", + "part_type": "하단마감재", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "하단마감재 KWE01 EGI 60*40", + "specification": "60*40", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 599 + }, + { + "item_id": 14062, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "150K(S)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 150K(S) (220V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 600 + }, + { + "item_id": 14063, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "300K(S)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 300K(S) (220V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 601 + }, + { + "item_id": 14064, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "300K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 300K (220V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 602 + }, + { + "item_id": 14065, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "400K(S)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 400K(S) (220V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 603 + }, + { + "item_id": 14066, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "400K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 400K (220V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 604 + }, + { + "item_id": 14067, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "500K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 500K (220V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 605 + }, + { + "item_id": 14068, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "600K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 600K (220V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 606 + }, + { + "item_id": 14069, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "800K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 800K (220V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 607 + }, + { + "item_id": 14070, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "150K(S)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 150K(S) (380V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 608 + }, + { + "item_id": 14071, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "300K(S)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 300K(S) (380V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 609 + }, + { + "item_id": 14072, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "300K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 300K (380V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 610 + }, + { + "item_id": 14073, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "400K(S)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 400K(S) (380V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 611 + }, + { + "item_id": 14074, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "400K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 400K (380V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 612 + }, + { + "item_id": 14075, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "500K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 500K (380V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 613 + }, + { + "item_id": 14076, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "600K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 600K (380V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 614 + }, + { + "item_id": 14077, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "800K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 800K (380V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 615 + }, + { + "item_id": 14078, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "1000K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 1000K (380V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 616 + }, + { + "item_id": 14079, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "1500K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 1500K (380V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 617 + }, + { + "item_id": 14080, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "motor", + "part_type": "2000K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터 2000K (380V)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 618 + }, + { + "item_id": 14081, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "노출형", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "제어기 노출형", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 619 + }, + { + "item_id": 14082, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "매립형", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "제어기 매립형", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 620 + }, + { + "item_id": 14083, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "뒷박스", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "제어기 뒷박스", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 621 + }, + { + "item_id": 14084, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "방화 콘트롤박스(단상)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "방화 콘트롤박스(단상)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 622 + }, + { + "item_id": 14085, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "방화 콘트롤박스(삼상)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "방화 콘트롤박스(삼상)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 623 + }, + { + "item_id": 14086, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "방화 콘트롤박스(1500K)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "방화 콘트롤박스(1500K)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 624 + }, + { + "item_id": 14087, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "방화 방화스위치", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "방화 방화스위치", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 625 + }, + { + "item_id": 14088, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "방범 콘트롤박스(단상)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "방범 콘트롤박스(단상)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 626 + }, + { + "item_id": 14089, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "방범 콘트롤박스(삼상)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "방범 콘트롤박스(삼상)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 627 + }, + { + "item_id": 14090, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "방범 방범스위치", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "방범 방범스위치", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 628 + }, + { + "item_id": 14091, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "방범 스위치커버", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "방범 스위치커버", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 629 + }, + { + "item_id": 14092, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "방범 안전리미트", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "방범 안전리미트", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 630 + }, + { + "item_id": 14093, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "방범 리모콘+스위치(최초)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "방범 리모콘+스위치(최초)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 631 + }, + { + "item_id": 14094, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "방범 리모콘4구", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "방범 리모콘4구", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 632 + }, + { + "item_id": 14095, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "controller", + "part_type": "방범 스위치(무선+수신기)", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "방범 스위치(무선+수신기)", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 633 + }, + { + "item_id": 14096, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "raw_material", + "part_type": "방화", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "슬랫 방화", + "specification": "슬랫", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 634 + }, + { + "item_id": 14097, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "raw_material", + "part_type": "방범", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "슬랫 방범", + "specification": "슬랫", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 635 + }, + { + "item_id": 14098, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "raw_material", + "part_type": "조인트바", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "슬랫 조인트바", + "specification": "슬랫", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 636 + }, + { + "item_id": 14099, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "raw_material", + "part_type": "실리카", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "스크린 실리카", + "specification": "스크린", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 637 + }, + { + "item_id": 14100, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "raw_material", + "part_type": "화이바", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "스크린 화이바", + "specification": "스크린", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 638 + }, + { + "item_id": 14101, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "raw_material", + "part_type": "와이어", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "스크린 와이어", + "specification": "스크린", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 639 + }, + { + "item_id": 14102, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "3", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 3인치 0.3m", + "specification": "0.3", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 640 + }, + { + "item_id": 14103, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "3", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 3인치 0.5m", + "specification": "0.5", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 641 + }, + { + "item_id": 14104, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "3", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 3인치 6m", + "specification": "6", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 642 + }, + { + "item_id": 14105, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "4", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 4인치 0.3m", + "specification": "0.3", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 643 + }, + { + "item_id": 14106, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "4", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 4인치 3m", + "specification": "3", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 644 + }, + { + "item_id": 14107, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "4", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 4인치 4.5m", + "specification": "4.5", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 645 + }, + { + "item_id": 14108, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "4", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 4인치 6m", + "specification": "6", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 646 + }, + { + "item_id": 14109, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "5", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 5인치 6m", + "specification": "6", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 647 + }, + { + "item_id": 14110, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "5", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 5인치 7m", + "specification": "7", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 648 + }, + { + "item_id": 14111, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "5", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 5인치 8.2m", + "specification": "8.2", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 649 + }, + { + "item_id": 14112, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "6", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 6인치 3m", + "specification": "3", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 650 + }, + { + "item_id": 14113, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "6", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 6인치 6m", + "specification": "6", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 651 + }, + { + "item_id": 14114, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "6", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 6인치 7m", + "specification": "7", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 652 + }, + { + "item_id": 14115, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "6", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 6인치 8m", + "specification": "8", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 653 + }, + { + "item_id": 14116, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "8", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 8인치 6m", + "specification": "6", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 654 + }, + { + "item_id": 14117, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "8", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 8인치 8.2m", + "specification": "8.2", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 655 + }, + { + "item_id": 14118, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "10", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 10인치 6m", + "specification": "6", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 656 + }, + { + "item_id": 14119, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "shaft", + "part_type": "12", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "감기샤프트 12인치 6m", + "specification": "6", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 657 + }, + { + "item_id": 14120, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "pipe", + "part_type": "1.4", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "각파이프 1.4T 3000mm", + "specification": "3000", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 658 + }, + { + "item_id": 14121, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "pipe", + "part_type": "1.4", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "각파이프 1.4T 6000mm", + "specification": "6000", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 659 + }, + { + "item_id": 14122, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "pipe", + "part_type": "2", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "각파이프 2T 6000mm", + "specification": "6000", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 660 + }, + { + "item_id": 14123, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "angle_main", + "part_type": "앵글3T", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "앵글 앵글3T 2.5m", + "specification": "2.5", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 661 + }, + { + "item_id": 14124, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "angle_main", + "part_type": "앵글3T", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "앵글 앵글3T 10m", + "specification": "10", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 662 + }, + { + "item_id": 14125, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "angle_main", + "part_type": "앵글4T", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "앵글 앵글4T 2.5m", + "specification": "2.5", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 663 + }, + { + "item_id": 14126, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "angle_main", + "part_type": "앵글4T", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "앵글 앵글4T 10m", + "specification": "10", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 664 + }, + { + "item_id": 14127, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "angle_bracket", + "part_type": "스크린용", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터받침 앵글 스크린용", + "specification": "380*180", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 665 + }, + { + "item_id": 14128, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "angle_bracket", + "part_type": "철제300K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터받침 앵글 철제300K", + "specification": "530*320", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 666 + }, + { + "item_id": 14129, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "angle_bracket", + "part_type": "철제400K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터받침 앵글 철제400K", + "specification": "600*350", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 667 + }, + { + "item_id": 14130, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "angle_bracket", + "part_type": "철제800K", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "모터받침 앵글 철제800K", + "specification": "690*390", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 668 + }, + { + "item_id": 14131, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "smokeban", + "part_type": "레일용", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "연기차단재 레일용", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 669 + }, + { + "item_id": 14132, + "is_sellable": 1, + "is_purchasable": 1, + "is_producible": 0, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "smokeban", + "part_type": "케이스용", + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "연기차단재 케이스용", + "specification": null, + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 670 + }, + { + "item_id": 13954, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "스크린", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KSS01 스크린 SUS마감 벽면형", + "specification": "SUS마감-벽면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 671 + }, + { + "item_id": 13955, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "스크린", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KSS01 스크린 SUS마감 측면형", + "specification": "SUS마감-측면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 672 + }, + { + "item_id": 13956, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "스크린", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KSE01 스크린 SUS마감 벽면형", + "specification": "SUS마감-벽면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 673 + }, + { + "item_id": 13957, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "스크린", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KSE01 스크린 EGI마감 벽면형", + "specification": "EGI마감-벽면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 674 + }, + { + "item_id": 13958, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "스크린", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KSE01 스크린 SUS마감 측면형", + "specification": "SUS마감-측면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 675 + }, + { + "item_id": 13959, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "스크린", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KSE01 스크린 EGI마감 측면형", + "specification": "EGI마감-측면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 676 + }, + { + "item_id": 13960, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "스크린", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KWE01 스크린 SUS마감 벽면형", + "specification": "SUS마감-벽면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 677 + }, + { + "item_id": 13961, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "스크린", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KWE01 스크린 EGI마감 벽면형", + "specification": "EGI마감-벽면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 678 + }, + { + "item_id": 13962, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "스크린", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KWE01 스크린 SUS마감 측면형", + "specification": "SUS마감-측면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 679 + }, + { + "item_id": 13963, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "스크린", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KWE01 스크린 EGI마감 측면형", + "specification": "EGI마감-측면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 680 + }, + { + "item_id": 13964, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "철재", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KQTS01 철재 SUS마감 벽면형", + "specification": "SUS마감-벽면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 681 + }, + { + "item_id": 13965, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "철재", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KQTS01 철재 SUS마감 측면형", + "specification": "SUS마감-측면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 682 + }, + { + "item_id": 13966, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "철재", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KTE01 철재 SUS마감 측면형", + "specification": "SUS마감-측면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 683 + }, + { + "item_id": 13967, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "철재", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KTE01 철재 SUS마감 벽면형", + "specification": "SUS마감-벽면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 684 + }, + { + "item_id": 13968, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "철재", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KTE01 철재 EGI마감 측면형", + "specification": "EGI마감-측면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 685 + }, + { + "item_id": 13969, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "철재", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KTE01 철재 EGI마감 벽면형", + "specification": "EGI마감-벽면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 686 + }, + { + "item_id": 13970, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "스크린", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KSS02 스크린 SUS마감 측면형", + "specification": "SUS마감-측면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 687 + }, + { + "item_id": 13971, + "is_sellable": 1, + "is_purchasable": 0, + "is_producible": 1, + "safety_stock": null, + "lead_time": null, + "is_variable_size": 0, + "product_category": "스크린", + "part_type": null, + "bending_diagram": null, + "bending_details": null, + "specification_file": null, + "specification_file_name": null, + "certification_file": null, + "certification_file_name": null, + "certification_number": null, + "certification_start_date": null, + "certification_end_date": null, + "is_inspection": "N", + "item_name": "KSS02 스크린 SUS마감 벽면형", + "specification": "SUS마감-벽면형", + "search_tag": null, + "remarks": null, + "created_at": null, + "updated_at": null, + "_original_id": 688 + } +] \ No newline at end of file diff --git a/database/seeders/data/kyungdong/item_fields.json b/database/seeders/data/kyungdong/item_fields.json new file mode 100644 index 0000000..386a834 --- /dev/null +++ b/database/seeders/data/kyungdong/item_fields.json @@ -0,0 +1,2180 @@ +[ + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목상태", + "field_key": null, + "field_type": "dropdown", + "order_no": 20, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"활성\", \"value\": \"활성\"}, {\"label\": \"비활성\", \"value\": \"비활성\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 230 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목명", + "field_key": "100_item_name", + "field_type": "dropdown", + "order_no": 1, + "is_required": 1, + "default_value": null, + "placeholder": "품목명을 선택하세요", + "display_condition": "{\"targetType\": \"field\", \"fieldConditions\": [{\"fieldKey\": \"item_name\", \"expectedValue\": \"철판\", \"targetFieldIds\": [\"101\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"알루미늄\", \"targetFieldIds\": [\"102\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"스테인리스\", \"targetFieldIds\": [\"103\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"아연도금강판\", \"targetFieldIds\": [\"104\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"SUS(스테인리스)\", \"targetFieldIds\": [\"101\", \"102\", \"103\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"EGI(아연도금강판)\", \"targetFieldIds\": [\"101\", \"102\", \"103\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"원단류\", \"targetFieldIds\": [\"101\"]}]}", + "validation_rules": null, + "options": "[{\"label\": \"철판\", \"value\": \"철판\"}, {\"label\": \"알루미늄\", \"value\": \"알루미늄\"}, {\"label\": \"스테인리스\", \"value\": \"스테인리스\"}, {\"label\": \"아연도금강판\", \"value\": \"아연도금강판\"}, {\"label\": \"SUS(스테인리스)\", \"value\": \"SUS(스테인리스)\"}, {\"label\": \"EGI(아연도금강판)\", \"value\": \"EGI(아연도금강판)\"}, {\"label\": \"원단류\", \"value\": \"원단류\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 185 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "규격", + "field_key": "101_specification_1", + "field_type": "dropdown", + "order_no": 2, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"옵션1-1\", \"value\": \"옵션1-1\"}, {\"label\": \"옵션1-2\", \"value\": \"옵션1-2\"}, {\"label\": \"옵션1-3\", \"value\": \"옵션1-3\"}, {\"label\": \"옵션120\", \"value\": \"옵션120\"}, {\"label\": \"옵션130\", \"value\": \"옵션130\"}, {\"label\": \"옵션1229\", \"value\": \"옵션1229\"}, {\"label\": \"옵션2025\", \"value\": \"옵션2025\"}, {\"label\": \"1.17\", \"value\": \"1.17\"}, {\"label\": \"1.2\", \"value\": \"1.2\"}, {\"label\": \"1.2T\", \"value\": \"1.2T\"}, {\"label\": \"1.5\", \"value\": \"1.5\"}, {\"label\": \"1.55\", \"value\": \"1.55\"}, {\"label\": \"1.6\", \"value\": \"1.6\"}, {\"label\": \"1.6T\", \"value\": \"1.6T\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 186 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "규격", + "field_key": "102_specification_2", + "field_type": "dropdown", + "order_no": 3, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"옵션2-1\", \"value\": \"옵션2-1\"}, {\"label\": \"옵션2-2\", \"value\": \"옵션2-2\"}, {\"label\": \"1219\", \"value\": \"1219\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 187 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "규격", + "field_key": "103_specification_3", + "field_type": "dropdown", + "order_no": 4, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"옵션3-1\", \"value\": \"옵션3-1\"}, {\"label\": \"옵션3-2\", \"value\": \"옵션3-2\"}, {\"label\": \"옵션3-3\", \"value\": \"옵션3-3\"}, {\"label\": \"2438\", \"value\": \"2438\"}, {\"label\": \"2500\", \"value\": \"2500\"}, {\"label\": \"3000\", \"value\": \"3000\"}, {\"label\": \"4000\", \"value\": \"4000\"}, {\"label\": \"4230\", \"value\": \"4230\"}, {\"label\": \"c(코일)\", \"value\": \"c(코일)\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 188 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "규격", + "field_key": "104_specification_4", + "field_type": "dropdown", + "order_no": 5, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"옵션4-1\", \"value\": \"옵션4-1\"}, {\"label\": \"옵션4-2\", \"value\": \"옵션4-2\"}, {\"label\": \"옵션4-3\", \"value\": \"옵션4-3\"}, {\"label\": \"P\/L\", \"value\": \"P\/L\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 189 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목 상태", + "field_key": "105_state", + "field_type": "dropdown", + "order_no": 5, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"활성\", \"value\": \"활성\"}, {\"label\": \"비활성\", \"value\": \"비활성\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 190 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목명", + "field_key": "107_item_name", + "field_type": "dropdown", + "order_no": 1, + "is_required": 1, + "default_value": null, + "placeholder": "품목명을 선택하세요", + "display_condition": "{\"targetType\": \"field\", \"fieldConditions\": [{\"fieldKey\": \"item_name\", \"expectedValue\": \"육각볼트\", \"targetFieldIds\": [\"108\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"썬더볼트\", \"targetFieldIds\": [\"109\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"샤우드\", \"targetFieldIds\": [\"108\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"앵글\", \"targetFieldIds\": [\"108\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"알카바\", \"targetFieldIds\": [\"108\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"컨트롤박스\", \"targetFieldIds\": [\"108\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"기타\", \"targetFieldIds\": [\"108\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"포장자재\", \"targetFieldIds\": [\"108\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"방범부품\", \"targetFieldIds\": [\"108\"]}, {\"fieldKey\": \"item_name\", \"expectedValue\": \"원단류\", \"targetFieldIds\": [\"108\"]}]}", + "validation_rules": null, + "options": "[{\"label\": \"육각볼트\", \"value\": \"육각볼트\"}, {\"label\": \"썬더볼트\", \"value\": \"썬더볼트\"}, {\"label\": \"샤우드\", \"value\": \"샤우드\"}, {\"label\": \"컨트롤박스\", \"value\": \"컨트롤박스\"}, {\"label\": \"앵글\", \"value\": \"앵글\"}, {\"label\": \"알카바\", \"value\": \"알카바\"}, {\"label\": \"방범부품\", \"value\": \"방범부품\"}, {\"label\": \"방화부품\", \"value\": \"방화부품\"}, {\"label\": \"제어기\", \"value\": \"제어기\"}, {\"label\": \"원단류\", \"value\": \"원단류\"}, {\"label\": \"지퍼류\", \"value\": \"지퍼류\"}, {\"label\": \"포장자재\", \"value\": \"포장자재\"}, {\"label\": \"기타\", \"value\": \"기타\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 191 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "규격", + "field_key": "108_specification_1", + "field_type": "dropdown", + "order_no": 2, + "is_required": 1, + "default_value": null, + "placeholder": "부자재 드롭다운 1", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"부자재1-1\", \"value\": \"부자재1-1\"}, {\"label\": \"부자재1-2\", \"value\": \"부자재1-2\"}, {\"label\": \"부자재12334\", \"value\": \"부자재12334\"}, {\"label\": \"부자재2025\", \"value\": \"부자재2025\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 192 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "규격", + "field_key": "109_specification_2", + "field_type": "dropdown", + "order_no": 3, + "is_required": 1, + "default_value": null, + "placeholder": "부자재 드롭다운 2", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"부자재2-1\", \"value\": \"부자재2-1\"}, {\"label\": \"부자재2-2\", \"value\": \"부자재2-2\"}, {\"label\": \"부자재2-3\", \"value\": \"부자재2-3\"}, {\"label\": \"부자재2-4\", \"value\": \"부자재2-4\"}, {\"label\": \"부자재2-5\", \"value\": \"부자재2-5\"}, {\"label\": \"부자재2-6\", \"value\": \"부자재2-6\"}, {\"label\": \"1199\", \"value\": \"1199\"}, {\"label\": \"1920\", \"value\": \"1920\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 193 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "마감", + "field_key": "112_deadline", + "field_type": "dropdown", + "order_no": 6, + "is_required": 1, + "default_value": null, + "placeholder": "마감을 선택하세요", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"SUS마감\", \"value\": \"SUS마감\"}, {\"label\": \"EGI마감\", \"value\": \"EGI마감\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 196 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "측면 규격 (가로)", + "field_key": "113_side_dimensions_horizontal", + "field_type": "number", + "order_no": 1, + "is_required": 1, + "default_value": null, + "placeholder": "예: 50", + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 197 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "측면 규격 (세로)", + "field_key": "114_side_dimensions_vertical", + "field_type": "number", + "order_no": 2, + "is_required": 1, + "default_value": null, + "placeholder": "예: 100", + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 198 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "길이", + "field_key": "115_length", + "field_type": "dropdown", + "order_no": 3, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"1219\", \"value\": \"1219\"}, {\"label\": \"2438\", \"value\": \"2438\"}, {\"label\": \"3000\", \"value\": \"3000\"}, {\"label\": \"3500\", \"value\": \"3500\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 199 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목명", + "field_key": "116_bending_parts", + "field_type": "dropdown", + "order_no": 0, + "is_required": 1, + "default_value": null, + "placeholder": "품목명을 선택하세요", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"가이드레일 (벽면형) (R)\", \"value\": \"가이드레일 (벽면형) (R)\"}, {\"label\": \"가이드레일 (측면형) (S)\", \"value\": \"가이드레일 (측면형) (S)\"}, {\"label\": \"케이스 (C)\", \"value\": \"케이스 (C)\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 200 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목명", + "field_key": "117_purchase_parts", + "field_type": "dropdown", + "order_no": 0, + "is_required": 1, + "default_value": null, + "placeholder": "품목명을 선택하세요", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"전동개폐기 (E)\", \"value\": \"전동개폐기 (E)\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 201 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "부품구성 (BOM) 필요", + "field_key": "118_bom", + "field_type": "checkbox", + "order_no": 0, + "is_required": 0, + "default_value": null, + "placeholder": "부품 구성", + "display_condition": "{\"targetType\": \"section\", \"fieldConditions\": [{\"fieldKey\": \"bom\", \"expectedValue\": \"true\", \"targetSectionIds\": [\"101\"]}]}", + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 202 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "설치유형", + "field_key": "119_Installation_type_1", + "field_type": "dropdown", + "order_no": 3, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"벽면형 (R)\", \"value\": \"벽면형 (R)\"}, {\"label\": \"측면형 (S)\", \"value\": \"측면형 (S)\"}]", + "properties": "{\"required\": true, \"inputType\": \"dropdown\"}", + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 203 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "설치유형", + "field_key": "120_Installation_type_2", + "field_type": "dropdown", + "order_no": 4, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"표준형 (C)\", \"value\": \"표준형 (C)\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 204 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "설치유형", + "field_key": "121_Installation_type_3", + "field_type": "dropdown", + "order_no": 5, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"스크린 (B)\", \"value\": \"스크린 (B)\"}, {\"label\": \"철재 (T)\", \"value\": \"철재 (T)\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 205 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목명", + "field_key": "122_bending_parts", + "field_type": "dropdown", + "order_no": 7, + "is_required": 1, + "default_value": null, + "placeholder": "절곡 부품 품목", + "display_condition": "{\"targetType\": \"field\", \"fieldConditions\": [{\"fieldKey\": \"bending_parts\", \"expectedValue\": \"가이드레일 벽면형 (R)\", \"targetFieldIds\": [\"123\", \"126\", \"127\", \"128\", \"129\", \"130\", \"131\"]}, {\"fieldKey\": \"bending_parts\", \"expectedValue\": \"가이드레일 측면형 (S)\", \"targetFieldIds\": [\"124\", \"126\", \"127\", \"128\", \"129\", \"130\", \"131\"]}, {\"fieldKey\": \"bending_parts\", \"expectedValue\": \"케이스 (C)\", \"targetFieldIds\": [\"125\", \"126\", \"127\", \"128\", \"129\", \"130\", \"131\"]}]}", + "validation_rules": null, + "options": "[{\"label\": \"가이드레일 벽면형 (R)\", \"value\": \"가이드레일 벽면형 (R)\"}, {\"label\": \"가이드레일 측면형 (S)\", \"value\": \"가이드레일 측면형 (S)\"}, {\"label\": \"케이스 (C)\", \"value\": \"케이스 (C)\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 206 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "종류", + "field_key": "123_type_1", + "field_type": "dropdown", + "order_no": 8, + "is_required": 1, + "default_value": null, + "placeholder": "절곡부품 품목명 종류1", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"분체 (M)\", \"value\": \"분체 (M)\"}, {\"label\": \"분체 철재(T)\", \"value\": \"분체 철재(T)\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 207 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "종류", + "field_key": "124_type_2", + "field_type": "dropdown", + "order_no": 9, + "is_required": 1, + "default_value": null, + "placeholder": "절곡부품 품목명 종류2", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"C형 (C)\", \"value\": \"C형 (C)\"}, {\"label\": \"D형 (D)\", \"value\": \"D형 (D)\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 208 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "종류", + "field_key": "125_type_3", + "field_type": "dropdown", + "order_no": 10, + "is_required": 1, + "default_value": null, + "placeholder": "절곡부품 품목명 종류3", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"전면부 (A)\", \"value\": \"전면부 (A)\"}, {\"label\": \"점검부 (B)\", \"value\": \"점검부 (B)\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 209 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "재질", + "field_key": "126_texture", + "field_type": "dropdown", + "order_no": 11, + "is_required": 1, + "default_value": null, + "placeholder": "재질을 선택하세요.", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"EGI 1.15T\", \"value\": \"EGI 1.15T\"}, {\"label\": \"EGI 1.55T\", \"value\": \"EGI 1.55T\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 210 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "폭 합계", + "field_key": "127_width_total", + "field_type": "number", + "order_no": 12, + "is_required": 1, + "default_value": null, + "placeholder": "전개도 상세를 입력해주세요", + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 211 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "모양&길이", + "field_key": "128_Shape_Length", + "field_type": "dropdown", + "order_no": 13, + "is_required": 1, + "default_value": null, + "placeholder": "모양&길이를 선택하세요", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"W50X3000\", \"value\": \"W50X3000\"}, {\"label\": \"W50X4000\", \"value\": \"W50X4000\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 212 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목 상태", + "field_key": "131_state", + "field_type": "dropdown", + "order_no": 16, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"활성\", \"value\": \"활성\"}, {\"label\": \"비활성\", \"value\": \"비활성\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 215 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목명", + "field_key": "132_PurchasedItemName", + "field_type": "dropdown", + "order_no": 15, + "is_required": 1, + "default_value": null, + "placeholder": "구매부품품목명", + "display_condition": "{\"targetType\": \"field\", \"fieldConditions\": [{\"fieldKey\": \"PurchasedItemName\", \"expectedValue\": \"전동개폐기 (E)\", \"targetFieldIds\": [\"134\", \"135\", \"136\", \"137\", \"133\", \"138\"]}]}", + "validation_rules": null, + "options": "[{\"label\": \"전동개폐기 (E)\", \"value\": \"전동개폐기 (E)\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 216 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목상태", + "field_key": "133_state", + "field_type": "dropdown", + "order_no": 10, + "is_required": 0, + "default_value": null, + "placeholder": "구매 부품 품목상태", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"활성\", \"value\": \"활성\"}, {\"label\": \"비활성\", \"value\": \"비활성\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 217 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "전원", + "field_key": "134_power", + "field_type": "dropdown", + "order_no": 17, + "is_required": 1, + "default_value": null, + "placeholder": "전원을 선택하세요", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"220V\", \"value\": \"220V\"}, {\"label\": \"330V\", \"value\": \"330V\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 218 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "용량", + "field_key": "135_capacity", + "field_type": "dropdown", + "order_no": 18, + "is_required": 1, + "default_value": null, + "placeholder": "용량을 선택하세요", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"100KG\", \"value\": \"100KG\"}, {\"label\": \"300KG\", \"value\": \"300KG\"}, {\"label\": \"400KG\", \"value\": \"400KG\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 219 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목상태", + "field_key": "138_state", + "field_type": "dropdown", + "order_no": 16, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"활성\", \"value\": \"활성\"}, {\"label\": \"비활성\", \"value\": \"비활성\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 222 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "상품명", + "field_key": "139_productName", + "field_type": "textbox", + "order_no": 1, + "is_required": 1, + "default_value": null, + "placeholder": "상품명을 입력하세요 (예: 프리미엄 스크린)", + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 223 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목명", + "field_key": "140_field_96", + "field_type": "textbox", + "order_no": 2, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 224 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "로트 약자", + "field_key": "141_lotNum", + "field_type": "textbox", + "order_no": 3, + "is_required": 0, + "default_value": null, + "placeholder": "로트 약자를 입력하세요", + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 225 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "인정번호", + "field_key": "142_accreditationNumber", + "field_type": "textbox", + "order_no": 5, + "is_required": 0, + "default_value": null, + "placeholder": "인정번호를 입력하세요", + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 226 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "인정 유효기간 시작일", + "field_key": "143_accreditationStart", + "field_type": "date", + "order_no": 6, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 227 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "인정 유효기간 종료일", + "field_key": "144_accreditationEnd", + "field_type": "date", + "order_no": 7, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 228 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "비고", + "field_key": "145_field_137", + "field_type": "textbox", + "order_no": 8, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 229 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "동적 필드 값", + "field_key": "attributes", + "field_type": "textbox", + "order_no": 7, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": "items", + "source_column": "attributes", + "storage_type": "column", + "json_path": null, + "category": null, + "description": null, + "is_common": 1, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 237 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "속성 아카이브", + "field_key": "attributes_archive", + "field_type": "textbox", + "order_no": 8, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": "items", + "source_column": "attributes_archive", + "storage_type": "column", + "json_path": null, + "category": null, + "description": null, + "is_common": 1, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 238 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "[{child_item_id, quantity}, ...]", + "field_key": "bom", + "field_type": "textbox", + "order_no": 6, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": "items", + "source_column": "bom", + "storage_type": "column", + "json_path": null, + "category": null, + "description": null, + "is_common": 1, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 236 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "카테고리 ID", + "field_key": "category_id", + "field_type": "number", + "order_no": 5, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": "items", + "source_column": "category_id", + "storage_type": "column", + "json_path": null, + "category": null, + "description": null, + "is_common": 1, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 235 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목코드", + "field_key": "code", + "field_type": "textbox", + "order_no": 2, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": "items", + "source_column": "code", + "storage_type": "column", + "json_path": null, + "category": null, + "description": null, + "is_common": 1, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 232 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "설명", + "field_key": "description", + "field_type": "textarea", + "order_no": 10, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": "items", + "source_column": "description", + "storage_type": "column", + "json_path": null, + "category": null, + "description": null, + "is_common": 1, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 240 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "활성 여부", + "field_key": "field_163", + "field_type": "dropdown", + "order_no": 4, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"활성\", \"value\": \"활성\"}, {\"label\": \"비활성\", \"value\": \"비활성\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 242 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "마감유형", + "field_key": "finishing_type", + "field_type": "dropdown", + "order_no": 0, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"SUS마감\", \"value\": \"SUS마감\"}, {\"label\": \"EGI마감\", \"value\": \"EGI마감\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": "$.finishing_type", + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 245 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "설치유형", + "field_key": "guiderail_type", + "field_type": "dropdown", + "order_no": 0, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"벽면형\", \"value\": \"벽면형\"}, {\"label\": \"측면형\", \"value\": \"측면형\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": "$.guiderail_type", + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 246 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "활성 여부", + "field_key": "is_active", + "field_type": "dropdown", + "order_no": 6, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"활성\", \"value\": \"활성\"}, {\"label\": \"비활성\", \"value\": \"비활성\"}]", + "properties": "{\"required\": false, \"attributeType\": \"custom\"}", + "source_table": "items", + "source_column": "is_active", + "storage_type": "column", + "json_path": null, + "category": null, + "description": null, + "is_common": 1, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 241 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목명", + "field_key": "item_name", + "field_type": "textbox", + "order_no": 0, + "is_required": 1, + "default_value": null, + "placeholder": "품목명 입력", + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 181 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "FG, PT, SM, RM, CS", + "field_key": "item_type", + "field_type": "textbox", + "order_no": 1, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": "items", + "source_column": "item_type", + "storage_type": "column", + "json_path": null, + "category": null, + "description": null, + "is_common": 1, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 231 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목명", + "field_key": "itemNameAssemblyPart", + "field_type": "dropdown", + "order_no": 2, + "is_required": 1, + "default_value": null, + "placeholder": "품목명을 선택하세요", + "display_condition": "{\"targetType\": \"field\", \"fieldConditions\": [{\"fieldKey\": \"itemNameAssemblyPart\", \"expectedValue\": \"가이드레일\", \"targetFieldIds\": [\"119\", \"130\"]}, {\"fieldKey\": \"itemNameAssemblyPart\", \"expectedValue\": \"케이스\", \"targetFieldIds\": [\"120\", \"130\"]}, {\"fieldKey\": \"itemNameAssemblyPart\", \"expectedValue\": \"하단마감제\", \"targetFieldIds\": [\"121\", \"130\"]}]}", + "validation_rules": null, + "options": "[{\"label\": \"가이드레일\", \"value\": \"가이드레일\"}, {\"label\": \"케이스\", \"value\": \"케이스\"}, {\"label\": \"하단마감제\", \"value\": \"하단마감제\"}]", + "properties": "{\"required\": false, \"attributeType\": \"custom\"}", + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 195 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "단위", + "field_key": "items_unit", + "field_type": "textbox", + "order_no": 4, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": "items", + "source_column": "unit", + "storage_type": "column", + "json_path": null, + "category": null, + "description": null, + "is_common": 1, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 234 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "대분류", + "field_key": "major_category", + "field_type": "dropdown", + "order_no": 0, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"스크린\", \"value\": \"스크린\"}, {\"label\": \"철재\", \"value\": \"철재\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": "$.major_category", + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 244 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "모델명", + "field_key": "model_name", + "field_type": "dropdown", + "order_no": 0, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"KSS01\", \"value\": \"KSS01\"}, {\"label\": \"KSE01\", \"value\": \"KSE01\"}, {\"label\": \"KWE01\", \"value\": \"KWE01\"}, {\"label\": \"KQTS01\", \"value\": \"KQTS01\"}, {\"label\": \"KTE01\", \"value\": \"KTE01\"}, {\"label\": \"KSS02\", \"value\": \"KSS02\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": "$.model_name", + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 243 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "품목명", + "field_key": "name", + "field_type": "textbox", + "order_no": 3, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": "items", + "source_column": "name", + "storage_type": "column", + "json_path": null, + "category": null, + "description": null, + "is_common": 1, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 233 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "비고", + "field_key": "note1", + "field_type": "textbox", + "order_no": 7, + "is_required": 0, + "default_value": null, + "placeholder": "텍스트 박스 테스트", + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": "{\"required\": false, \"inputType\": \"textbox\", \"multiColumn\": false}", + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 184 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "비고", + "field_key": "note2", + "field_type": "textbox", + "order_no": 14, + "is_required": 0, + "default_value": null, + "placeholder": "비고 사항을 입력하세요", + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 214 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "비고", + "field_key": "note3", + "field_type": "textbox", + "order_no": 19, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 221 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "추가 옵션", + "field_key": "options", + "field_type": "textbox", + "order_no": 9, + "is_required": 0, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": "items", + "source_column": "options", + "storage_type": "column", + "json_path": null, + "category": null, + "description": null, + "is_common": 1, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 239 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "부품 유형", + "field_key": "Part_type", + "field_type": "dropdown", + "order_no": 1, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": "{\"targetType\": \"field\", \"fieldConditions\": [{\"fieldKey\": \"Part_type\", \"expectedValue\": \"조립 부품(Assembly Part)\", \"targetFieldIds\": [\"111\", \"98\", \"112\", \"99\"], \"targetSectionIds\": [\"96\", \"99\", \"98\", \"100\"]}, {\"fieldKey\": \"Part_type\", \"expectedValue\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"targetFieldIds\": [\"122\", \"98\"], \"targetSectionIds\": [\"97\"]}, {\"fieldKey\": \"Part_type\", \"expectedValue\": \"구매 부품(Purchased Part)\", \"targetFieldIds\": [\"132\", \"98\"], \"targetSectionIds\": [\"98\", \"100\"]}]}", + "validation_rules": null, + "options": "[{\"label\": \"조립 부품(Assembly Part)\", \"value\": \"조립 부품(Assembly Part)\"}, {\"label\": \"절곡 부품(Bending Part) - 전개도만 사용\", \"value\": \"절곡 부품(Bending Part) - 전개도만 사용\"}, {\"label\": \"구매 부품(Purchased Part)\", \"value\": \"구매 부품(Purchased Part)\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 194 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "규격(사양)", + "field_key": "specification", + "field_type": "textbox", + "order_no": 1, + "is_required": 1, + "default_value": null, + "placeholder": "테스트", + "display_condition": null, + "validation_rules": null, + "options": null, + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 182 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "단위", + "field_key": "unit", + "field_type": "dropdown", + "order_no": 6, + "is_required": 1, + "default_value": null, + "placeholder": null, + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"M\", \"value\": \"M\"}, {\"label\": \"mm\", \"value\": \"mm\"}, {\"label\": \"EA\", \"value\": \"EA\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 183 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "단위_2", + "field_key": "unit_2", + "field_type": "dropdown", + "order_no": 15, + "is_required": 1, + "default_value": null, + "placeholder": "단위 선택", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"m\", \"value\": \"m\"}, {\"label\": \"mm\", \"value\": \"mm\"}, {\"label\": \"ea\", \"value\": \"ea\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 213 + }, + { + "tenant_id": 287, + "group_id": 1, + "field_name": "단위_3", + "field_key": "unit_3", + "field_type": "dropdown", + "order_no": 23, + "is_required": 1, + "default_value": null, + "placeholder": "용량을 선택하세요", + "display_condition": null, + "validation_rules": null, + "options": "[{\"label\": \"M\", \"value\": \"M\"}, {\"label\": \"mm\", \"value\": \"mm\"}, {\"label\": \"EA\", \"value\": \"EA\"}]", + "properties": null, + "source_table": null, + "source_column": null, + "storage_type": "json", + "json_path": null, + "category": null, + "description": null, + "is_common": 0, + "is_active": 1, + "is_locked": 0, + "locked_by": null, + "locked_at": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 220 + } +] \ No newline at end of file diff --git a/database/seeders/data/kyungdong/item_pages.json b/database/seeders/data/kyungdong/item_pages.json new file mode 100644 index 0000000..09a5b14 --- /dev/null +++ b/database/seeders/data/kyungdong/item_pages.json @@ -0,0 +1,82 @@ +[ + { + "tenant_id": 287, + "group_id": 1, + "page_name": "소모품 등록", + "item_type": "CS", + "source_table": "items", + "absolute_path": "\/소모품관리\/소모품 등록", + "is_active": 1, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 1025 + }, + { + "tenant_id": 287, + "group_id": 1, + "page_name": "원자재 등록", + "item_type": "RM", + "source_table": "items", + "absolute_path": "\/원자재관리\/원자재 등록", + "is_active": 1, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 1026 + }, + { + "tenant_id": 287, + "group_id": 1, + "page_name": "부자재 등록", + "item_type": "SM", + "source_table": "items", + "absolute_path": "\/부자재관리\/부자재 등록", + "is_active": 1, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 1027 + }, + { + "tenant_id": 287, + "group_id": 1, + "page_name": "부품 등록", + "item_type": "PT", + "source_table": "items", + "absolute_path": "\/부품관리\/부품 등록", + "is_active": 1, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 1028 + }, + { + "tenant_id": 287, + "group_id": 1, + "page_name": "제품 등록", + "item_type": "FG", + "source_table": "items", + "absolute_path": "\/제품관리\/제품 등록", + "is_active": 1, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 1029 + } +] \ No newline at end of file diff --git a/database/seeders/data/kyungdong/item_sections.json b/database/seeders/data/kyungdong/item_sections.json new file mode 100644 index 0000000..0b4b78a --- /dev/null +++ b/database/seeders/data/kyungdong/item_sections.json @@ -0,0 +1,189 @@ +[ + { + "tenant_id": 287, + "group_id": 1, + "title": "기본정보", + "type": "fields", + "order_no": 0, + "is_template": 0, + "is_default": 0, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 107 + }, + { + "tenant_id": 287, + "group_id": 1, + "title": "기본 정보", + "type": "fields", + "order_no": 0, + "is_template": 0, + "is_default": 0, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 108 + }, + { + "tenant_id": 287, + "group_id": 1, + "title": "기본 정보", + "type": "fields", + "order_no": 0, + "is_template": 0, + "is_default": 0, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 109 + }, + { + "tenant_id": 287, + "group_id": 1, + "title": "기본 정보", + "type": "fields", + "order_no": 0, + "is_template": 0, + "is_default": 0, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 110 + }, + { + "tenant_id": 287, + "group_id": 1, + "title": "조립 부품 정보", + "type": "fields", + "order_no": 1, + "is_template": 0, + "is_default": 0, + "description": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 111 + }, + { + "tenant_id": 287, + "group_id": 1, + "title": "절곡 부품", + "type": "fields", + "order_no": 2, + "is_template": 0, + "is_default": 0, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 112 + }, + { + "tenant_id": 287, + "group_id": 1, + "title": "구매 부품", + "type": "fields", + "order_no": 3, + "is_template": 0, + "is_default": 0, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 113 + }, + { + "tenant_id": 287, + "group_id": 1, + "title": "측면 규격 및 길이", + "type": "fields", + "order_no": 4, + "is_template": 0, + "is_default": 0, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 114 + }, + { + "tenant_id": 287, + "group_id": 1, + "title": "BOM", + "type": "fields", + "order_no": 5, + "is_template": 0, + "is_default": 0, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 115 + }, + { + "tenant_id": 287, + "group_id": 1, + "title": "부품 구성 (BOM)", + "type": "bom", + "order_no": 6, + "is_template": 0, + "is_default": 0, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 116 + }, + { + "tenant_id": 287, + "group_id": 1, + "title": "기본 정보", + "type": "fields", + "order_no": 0, + "is_template": 0, + "is_default": 0, + "description": null, + "created_by": 1, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 117 + } +] \ No newline at end of file diff --git a/database/seeders/data/kyungdong/items.json b/database/seeders/data/kyungdong/items.json new file mode 100644 index 0000000..07485c0 --- /dev/null +++ b/database/seeders/data/kyungdong/items.json @@ -0,0 +1,17942 @@ +[ + { + "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": "80019", + "name": "실", + "unit": "m", + "category_id": 337, + "process_type": null, + "item_category": null, + "bom": null, + "attributes": "{\"spec\": \" \", \"item_div\": \"[부재료]\", \"legacy_num\": 114, \"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": 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": 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": 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 + } +] \ No newline at end of file diff --git a/database/seeders/data/kyungdong/prices.json b/database/seeders/data/kyungdong/prices.json new file mode 100644 index 0000000..b7dd34b --- /dev/null +++ b/database/seeders/data/kyungdong/prices.json @@ -0,0 +1,21842 @@ +[ + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13353, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2759 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13354, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "520000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2760 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13355, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "6000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2761 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13356, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2762 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13357, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2763 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13358, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2764 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13359, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "60000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2765 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13360, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "80000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2766 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13361, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2767 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13362, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2768 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13363, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2769 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13364, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "8000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2770 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13365, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "10000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2771 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13366, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2772 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13367, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "13500.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2773 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13368, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2774 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13369, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "400.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2775 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13370, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2776 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13371, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2777 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13372, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "7000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2778 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13373, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "500.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2779 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13374, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2780 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13375, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "10000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2781 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13376, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2782 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13377, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "520000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2783 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13378, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2784 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13379, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2785 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13380, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "8700.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2786 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13381, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4200.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2787 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13382, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2788 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13383, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5600.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2789 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13384, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5500.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2790 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13385, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "7300.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2791 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13386, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2792 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13387, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2793 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13388, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2794 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13389, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "500.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2795 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13390, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2796 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13391, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2797 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13392, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2798 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13393, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2799 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13394, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2800 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13395, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2801 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13396, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2802 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13397, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2803 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13398, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2804 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13399, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2805 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13400, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2806 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13401, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2807 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13402, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2808 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13403, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2809 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13404, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2810 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13405, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2811 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13406, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2812 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13407, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2813 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13408, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2814 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13409, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2815 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13410, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2816 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13411, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2817 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13412, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2818 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13413, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2819 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13414, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "285000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2820 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13415, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "285000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2821 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13416, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "300000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2822 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13417, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "300000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2823 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13418, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "330000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2824 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13419, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "330000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2825 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13420, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "370000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2826 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13421, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "370000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2827 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13422, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "380000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2828 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13423, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "380000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2829 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13424, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "550000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2830 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13425, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "550000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2831 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13426, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "600000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2832 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13427, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "700000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2833 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13428, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "1300000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2834 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13429, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2835 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13430, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "60000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2836 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13431, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2837 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13432, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "60000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2838 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13433, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "85000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2839 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13434, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "110000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2840 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13435, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "120000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2841 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13436, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "400000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2842 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13437, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "200000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2843 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13438, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "130000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2844 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13439, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "40000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2845 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13440, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "70000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2846 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13441, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "130000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2847 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13442, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "10000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2848 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13443, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2849 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13444, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2850 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13445, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2851 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13446, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2852 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13447, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2853 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13448, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2854 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13449, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "50000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2855 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13450, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "280000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2856 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13451, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "310000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2857 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13452, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "350000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2858 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13453, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2859 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13454, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2860 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13455, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "360000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2861 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13456, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2862 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13457, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2863 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13458, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2864 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13459, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2865 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13460, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2866 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13461, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3600.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2867 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13462, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2868 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13463, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2869 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13464, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2870 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13465, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "250000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2871 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13466, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "2000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2872 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13467, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2873 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13468, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "70000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2874 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13469, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "20000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2875 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13470, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2876 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13471, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2877 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13472, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2878 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13473, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2879 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13474, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2880 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13475, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2881 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13476, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2882 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13477, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "15000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2883 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13478, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2884 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13479, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "38000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2885 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13480, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2886 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13953, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2887 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13481, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2888 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13482, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2889 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13483, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2890 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13484, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2891 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13485, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "15000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2892 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13486, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2893 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13487, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2894 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13488, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "200.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2895 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13489, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2896 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13490, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2897 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13491, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "70000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2898 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13492, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5700.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2899 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13493, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2900 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13494, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "23000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2901 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13495, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "2400.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2902 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13496, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2903 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13497, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2904 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13498, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "57000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2905 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13499, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5800.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2906 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13500, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "50000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2907 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13501, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "28000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2908 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13502, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "2200.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2909 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13503, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2910 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13504, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2911 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13505, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2912 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13506, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2913 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13507, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2914 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13508, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2915 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13509, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "36000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2916 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13510, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2917 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13511, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2918 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13512, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "7000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2919 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13513, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2920 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13514, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "50000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2921 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13515, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2922 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13516, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2923 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13517, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "400.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2924 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13518, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "400.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2925 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13519, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4800.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2926 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13520, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "9000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2927 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13521, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "12000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2928 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13522, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "15000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2929 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13523, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "20000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2930 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13524, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2931 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13525, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "1000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2932 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13526, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2933 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13527, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "180000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2934 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13528, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "180000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2935 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13529, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2936 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13530, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2937 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13531, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "200.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2938 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13532, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2939 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13533, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2940 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13534, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2941 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13535, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2942 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13536, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "372000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2943 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13537, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2944 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13538, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "100000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2945 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13539, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2946 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13540, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2947 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13541, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2948 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13542, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2949 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13543, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2950 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13544, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2951 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13545, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2952 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13546, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2953 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13547, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2954 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13548, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2955 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13549, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2956 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13550, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2957 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13551, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2958 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13552, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2959 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13553, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2960 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13554, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2961 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13555, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2962 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13556, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2963 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13557, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2964 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13558, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2965 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13559, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2966 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13560, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2967 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13561, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2968 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13562, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2969 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13563, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2970 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13564, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2971 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13565, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2972 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13566, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2973 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13567, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2974 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13568, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2975 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13569, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2976 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13570, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2977 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13571, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2978 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13572, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2979 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13573, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2980 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13574, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2981 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13575, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "12000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2982 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13576, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2983 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13577, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "480000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2984 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13578, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "100000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2985 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13579, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2986 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13580, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2987 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13581, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "60000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2988 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13582, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2989 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13583, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2990 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13584, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2991 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13585, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2992 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13586, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2993 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13587, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "25000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2994 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13588, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "10000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2995 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13589, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "20000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2996 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13590, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2997 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13591, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2998 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13592, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 2999 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13593, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "100000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3000 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13594, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "110000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3001 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13595, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "120000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3002 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13596, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "130000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3003 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13597, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3004 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13598, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3005 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13599, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3006 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13600, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3007 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13601, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3008 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13602, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3009 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13603, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3010 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13604, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3011 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13605, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3012 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13606, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3013 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13607, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3014 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13608, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3015 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13609, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "1100000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3016 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13610, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3017 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13611, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3018 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13612, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3019 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13613, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3020 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13614, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3021 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13615, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3022 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13616, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3023 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13617, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "85000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3024 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13618, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "110000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3025 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13619, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "45000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3026 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13620, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3027 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13621, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3028 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13622, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3029 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13623, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3030 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13624, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3031 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13625, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3032 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13626, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3033 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13627, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "12000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3034 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13628, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "17000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3035 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13629, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "22000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3036 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13630, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "27000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3037 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13952, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "2000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3038 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13631, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3039 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13632, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3300.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3040 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13633, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3600.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3041 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13634, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3900.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3042 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13635, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4200.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3043 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13636, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3044 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13637, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4500.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3045 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13638, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "2700.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3046 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13639, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3047 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13640, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3300.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3048 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13641, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3600.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3049 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13642, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3050 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13643, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "12000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3051 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13644, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3052 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13645, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "14000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3053 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13646, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3054 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13647, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3055 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13648, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3056 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13649, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3500.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3057 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13650, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3058 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13651, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3059 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13652, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3060 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13653, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3061 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13654, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3062 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13655, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3063 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13656, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "6000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3064 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13657, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3065 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13658, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3066 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13659, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3067 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13660, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3068 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13661, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3069 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13662, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "7000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3070 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13663, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "10000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3071 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13664, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5100.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3072 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13665, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3073 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13666, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3074 + }, + { + "tenant_id": 287, + "item_type_code": "CS", + "item_id": 13667, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3075 + }, + { + "tenant_id": 287, + "item_type_code": "CS", + "item_id": 13668, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3076 + }, + { + "tenant_id": 287, + "item_type_code": "CS", + "item_id": 13669, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3077 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13670, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3078 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13671, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3079 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13672, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "180000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3080 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13673, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3081 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13674, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3082 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13675, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "120000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3083 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13676, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3084 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13677, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3085 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13678, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3086 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13679, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3087 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13680, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3088 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13681, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3089 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13682, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "10000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3090 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13683, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3091 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13684, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3092 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13685, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3093 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13686, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3094 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13687, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "40000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3095 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13688, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3096 + }, + { + "tenant_id": 287, + "item_type_code": "CS", + "item_id": 13689, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3097 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13690, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "7500.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3098 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13691, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3099 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13692, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3100 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13693, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3101 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13694, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "50000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3102 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13695, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3103 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13696, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3104 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13697, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "6000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3105 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13698, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3106 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13699, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3107 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13700, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3108 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13701, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "180000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3109 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13964, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3110 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13965, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3111 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13957, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3112 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13956, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3113 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13959, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3114 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13958, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3115 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13954, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3116 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13955, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3117 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13971, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3118 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13970, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3119 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13969, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3120 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13967, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3121 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13968, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3122 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13966, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3123 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13961, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3124 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13960, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3125 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13963, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3126 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13962, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "models 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3127 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13702, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "14000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3128 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13703, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "27000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3129 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13704, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "19000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3130 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13705, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "29000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3131 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13706, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "14300.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3132 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13707, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "60000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3133 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13708, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "23000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3134 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13709, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "23000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3135 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13710, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "33000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3136 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13711, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "35000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3137 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13712, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "36000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3138 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13713, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "50000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3139 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13714, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3140 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13715, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3141 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13716, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3142 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13717, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3143 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13718, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "6000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3144 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13951, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "12000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3145 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13719, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3146 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13720, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3147 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13721, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3148 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13722, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3149 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13723, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3150 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13724, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3151 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13725, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3152 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13726, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3153 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13727, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3154 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13728, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3155 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13729, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3156 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13730, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3157 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13731, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3158 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13732, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3159 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13733, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3160 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13734, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3161 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13735, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3162 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13736, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3163 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13737, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3164 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13738, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3165 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13739, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3166 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13740, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3167 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13741, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3168 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13742, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3169 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13743, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3170 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13744, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3171 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13745, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3172 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13746, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3173 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13747, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3174 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13748, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3175 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13749, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3176 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13750, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3177 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13751, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3178 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13752, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3179 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13753, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3180 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13754, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3181 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13755, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3182 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13756, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3183 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13757, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3184 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13758, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3185 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13759, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3186 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13760, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3187 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13761, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3188 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13762, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3189 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13763, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3190 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13764, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3191 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13765, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3192 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13766, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3193 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13767, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3194 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13768, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3195 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13769, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3196 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13770, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3197 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13771, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3198 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13772, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3199 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13773, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3200 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13774, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3201 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13775, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3202 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13776, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3203 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13777, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3204 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13778, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3205 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13779, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3206 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13780, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3207 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13781, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3208 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13948, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3209 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13782, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3210 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13783, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3211 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13784, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3212 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13785, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3213 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13786, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3214 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13787, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3215 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13788, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3216 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13789, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3217 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13790, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3218 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13791, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3219 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13792, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3220 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13793, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3221 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13794, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3222 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13795, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3223 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13796, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3224 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13797, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3225 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13798, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3226 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13799, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3227 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13800, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3228 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13801, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3229 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13802, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "220000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3230 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13803, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "290400.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3231 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13804, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "303600.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3232 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13805, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "388800.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3233 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13806, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "396000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3234 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13807, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "432000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3235 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13808, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3236 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13809, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3237 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13810, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3238 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13811, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3239 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13812, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "100000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3240 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13813, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "95000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3241 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13814, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "35000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3242 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13815, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3243 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13816, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3244 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13817, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3245 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13818, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3246 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13819, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3247 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13820, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3248 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13821, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3249 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13822, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3250 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13823, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "265000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3251 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13824, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3252 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13825, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3253 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13826, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3254 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13827, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3255 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13828, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3256 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13829, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "90000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3257 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13830, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "50000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3258 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13831, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "120000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3259 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13832, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "45000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3260 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13833, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "85000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3261 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13834, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "22000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3262 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13835, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "55000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3263 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13836, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "50000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3264 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13837, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "70000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3265 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13838, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "90000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3266 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13839, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "20000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3267 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13840, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3268 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13841, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3269 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13842, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3270 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13843, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3271 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13844, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3272 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13845, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3273 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13846, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3274 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13847, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3275 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13848, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3276 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13849, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3277 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13850, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3278 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13851, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "305000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3279 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13852, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "320000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3280 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13853, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "350000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3281 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13854, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "390000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3282 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13855, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "400000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3283 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13856, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "570000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3284 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13857, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3285 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13858, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "320000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3286 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13859, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3287 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13860, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "390000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3288 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13861, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3289 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13862, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3290 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13863, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3291 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13864, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3292 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13865, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3293 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13866, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3294 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13867, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3295 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13868, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3296 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13869, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3297 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13870, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "305000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3298 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13871, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3299 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13872, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "350000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3300 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13873, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3301 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13874, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "400000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3302 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13875, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "570000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3303 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13876, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "620000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3304 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13877, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "1320000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3305 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13878, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3306 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13879, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3307 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13880, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3308 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13881, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3309 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13882, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3310 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13883, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3311 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13884, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3312 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13885, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3313 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13886, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3314 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13887, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3315 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13888, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3316 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13889, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3317 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13890, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3318 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13891, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3319 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13892, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3320 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13893, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3321 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13894, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3322 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13895, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3323 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13896, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3324 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13897, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3325 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13898, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3326 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13899, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3327 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13900, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3328 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13901, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3329 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13902, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3330 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13903, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3331 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13904, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3332 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13905, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3333 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13906, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3334 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13907, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3335 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13908, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3336 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13909, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3337 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13910, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3338 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13911, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3339 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13912, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3340 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13982, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "BDmodels_seconditem 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3341 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13977, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "25000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "item_list 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3342 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13986, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "BDmodels_seconditem 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3343 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13978, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "20000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "item_list 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3344 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13975, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "20000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "item_list 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3345 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13980, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "item_list 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3346 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13979, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "15000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "item_list 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3347 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13983, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "BDmodels_seconditem 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3348 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13973, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "50000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "item_list 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3349 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13972, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "100000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "item_list 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3350 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13976, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "15000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "item_list 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3351 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13974, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "item_list 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3352 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13984, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "BDmodels_seconditem 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3353 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13985, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "BDmodels_seconditem 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3354 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13981, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "BDmodels_seconditem 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3355 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13913, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "46000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3356 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13914, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "59000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3357 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13915, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "98000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3358 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13916, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "116000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3359 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13917, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "214000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3360 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13918, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "425000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3361 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13919, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3362 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13920, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "44000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3363 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13921, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3364 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13922, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3365 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13923, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "26000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3366 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13924, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "200000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3367 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13925, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "18000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3368 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13926, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "34000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3369 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13927, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "44000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3370 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13928, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "390000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3371 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13929, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3372 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13930, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "21500.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3373 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13931, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3374 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13932, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "18500.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3375 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13933, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "110000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3376 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13934, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3377 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13949, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "10000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3378 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 13950, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3379 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13935, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3380 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13936, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3381 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13937, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3382 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13938, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3383 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13939, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3384 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13940, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "18000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3385 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13941, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "33000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3386 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13942, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "33000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3387 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 13943, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "200000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3388 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13944, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "500000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3389 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13945, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "250000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3390 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13946, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3391 + }, + { + "tenant_id": 287, + "item_type_code": "FG", + "item_id": 13947, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-28", + "effective_to": null, + "note": "KDunitprice 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3392 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13987, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "130000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3393 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13988, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "130000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3394 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13989, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "100000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3395 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13990, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "100000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3396 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13991, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "150000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3397 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13992, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3398 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13993, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "80000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3399 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13994, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "80000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3400 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13995, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3401 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13996, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "10000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3402 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13997, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "25000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3403 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13998, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "20000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3404 + }, + { + "tenant_id": 287, + "item_type_code": "SM", + "item_id": 13999, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2024-08-25", + "effective_to": null, + "note": "price_motor 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3405 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 14000, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2025-06-18", + "effective_to": null, + "note": "price_raw_materials 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3406 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 14001, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2025-06-18", + "effective_to": null, + "note": "price_raw_materials 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3407 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 14002, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2025-06-18", + "effective_to": null, + "note": "price_raw_materials 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3408 + }, + { + "tenant_id": 287, + "item_type_code": "RM", + "item_id": 14003, + "client_group_id": null, + "purchase_price": "0.0000", + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "0.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2025-06-18", + "effective_to": null, + "note": "price_raw_materials 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": 1, + "updated_by": 1, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3409 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14004, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "14864.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3410 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14005, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "15844.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3411 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14006, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "24936.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3412 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14007, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "26704.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3413 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14008, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30646.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3414 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14009, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "37516.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3415 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14010, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "1100.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3416 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14011, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5080.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3417 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14012, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "24666.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3418 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14013, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "28472.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3419 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14014, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "33692.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3420 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14015, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "36082.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3421 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14016, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "54837.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3422 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14017, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "56457.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3423 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14018, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "68904.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3424 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14019, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "71604.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3425 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14020, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "71604.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3426 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14021, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "74304.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3427 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14022, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "77004.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3428 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14023, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "79704.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3429 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14024, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "84024.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3430 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14025, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "86724.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3431 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14026, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "8590.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3432 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14027, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "6318.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3433 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14028, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "55497.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3434 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14029, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "66321.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3435 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14030, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "29868.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3436 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14031, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "43851.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3437 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14032, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "37494.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3438 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14033, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "13330.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3439 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14034, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4158.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3440 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14035, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "54279.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3441 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14036, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "41982.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3442 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14037, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "34695.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3443 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14038, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "24948.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3444 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14039, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "15954.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3445 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14040, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5346.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3446 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14041, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4158.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3447 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14042, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "45783.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3448 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14043, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "34836.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3449 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14044, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "12276.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3450 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14045, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4158.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3451 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14046, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "40815.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3452 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14047, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "31920.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3453 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14048, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "12276.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3454 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14049, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "58113.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3455 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14050, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "48276.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3456 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14051, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "38529.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3457 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14052, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30834.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3458 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14053, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "13761.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3459 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14054, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5805.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3460 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14055, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4158.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3461 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14056, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "54279.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3462 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14057, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "41982.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3463 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14058, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "34695.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3464 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14059, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "24948.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3465 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14060, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "15954.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3466 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14061, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5346.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "BDmodels 마이그레이션", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3467 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14062, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "285000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3468 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14063, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "300000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3469 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14064, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "300000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3470 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14065, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "330000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3471 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14066, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "330000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3472 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14067, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "370000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3473 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14068, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "380000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3474 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14069, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "550000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3475 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14070, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "285000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3476 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14071, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "300000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3477 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14072, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "300000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3478 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14073, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "330000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3479 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14074, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "330000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3480 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14075, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "370000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3481 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14076, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "380000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3482 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14077, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "550000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3483 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14078, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "600000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3484 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14079, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "1300000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3485 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14080, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "1600000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3486 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14081, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "130000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3487 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14082, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "130000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3488 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14083, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "10000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3489 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14084, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "100000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3490 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14085, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "100000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3491 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14086, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "150000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3492 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14087, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3493 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14088, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "80000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3494 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14089, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "80000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3495 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14090, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3496 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14091, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3497 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14092, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "10000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3498 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14093, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "25000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3499 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14094, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "20000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3500 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14095, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_motor", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3501 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14096, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "45000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_raw_materials", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3502 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14097, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "45000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_raw_materials", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3503 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14098, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_raw_materials", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3504 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14099, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_raw_materials", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3505 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14100, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "23000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_raw_materials", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3506 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14101, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "30000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_raw_materials", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3507 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14102, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3508 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14103, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3509 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14104, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "43000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3510 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14105, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3511 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14106, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "28000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3512 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14107, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "41000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3513 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14108, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "55000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3514 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14109, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "90000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3515 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14110, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "105000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3516 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14111, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "122000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3517 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14112, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "48000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3518 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14113, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "107000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3519 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14114, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "124000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3520 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14115, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "142000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3521 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14116, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "195000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3522 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14117, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "265000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3523 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14118, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "372000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3524 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14119, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "444000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_shaft", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3525 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14120, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "7000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_pipe", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3526 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14121, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "14000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_pipe", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3527 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14122, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3700.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_pipe", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3528 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14123, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "17000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_angle (main)", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3529 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14124, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "35000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_angle (main)", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3530 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14125, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "24000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_angle (main)", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3531 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14126, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "54000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_angle (main)", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3532 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14127, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "3000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_angle (bracket)", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3533 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14128, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_angle (bracket)", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3534 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14129, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "4500.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_angle (bracket)", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3535 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14130, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "5000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_angle (bracket)", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3536 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14131, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "70000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_smokeban", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3537 + }, + { + "tenant_id": 287, + "item_type_code": "PT", + "item_id": 14132, + "client_group_id": null, + "purchase_price": null, + "processing_cost": null, + "loss_rate": null, + "margin_rate": null, + "sales_price": "70000.0000", + "rounding_rule": "round", + "rounding_unit": 1, + "supplier": null, + "effective_from": "2026-01-29", + "effective_to": null, + "note": "chandj.price_smokeban", + "status": "active", + "is_final": 0, + "finalized_at": null, + "finalized_by": null, + "created_by": null, + "updated_by": null, + "deleted_by": null, + "created_at": "2026-02-04 22:20:41", + "updated_at": "2026-02-04 22:20:41", + "deleted_at": null, + "_original_id": 3538 + } +] \ No newline at end of file