From 8f215b235b5c1e9b1a8e52a7b158a3d7df5ea336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Wed, 18 Mar 2026 13:48:45 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[items]=20=EB=A0=88=EA=B1=B0=EC=8B=9C=20?= =?UTF-8?q?=EC=9E=84=ED=8F=AC=ED=8A=B8=20=EC=BB=A4=EB=A7=A8=EB=93=9C=20ite?= =?UTF-8?q?m=5Ftype=20FG=20=E2=86=92=20PT=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - BendingProductImportLegacy: 케이스(SB-), 하단마감재(BB-) → PT - GuiderailImportLegacy: 가이드레일(GR-) → PT - DB 60건 FG → PT 변경 완료 (구성부품이므로 완제품이 아님) --- app/Console/Commands/BendingProductImportLegacy.php | 2 +- app/Console/Commands/GuiderailImportLegacy.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/BendingProductImportLegacy.php b/app/Console/Commands/BendingProductImportLegacy.php index 39110e1d..e1b2ff93 100644 --- a/app/Console/Commands/BendingProductImportLegacy.php +++ b/app/Console/Commands/BendingProductImportLegacy.php @@ -79,7 +79,7 @@ private function importItems($rows, string $category, int $tenantId, bool $dryRu 'tenant_id' => $tenantId, 'code' => $code, 'name' => $name, - 'item_type' => 'FG', + 'item_type' => 'PT', 'item_category' => $category, 'unit' => 'SET', 'options' => json_encode($options, JSON_UNESCAPED_UNICODE), diff --git a/app/Console/Commands/GuiderailImportLegacy.php b/app/Console/Commands/GuiderailImportLegacy.php index f3d92c35..4b110246 100644 --- a/app/Console/Commands/GuiderailImportLegacy.php +++ b/app/Console/Commands/GuiderailImportLegacy.php @@ -76,7 +76,7 @@ public function handle(): int 'tenant_id' => $tenantId, 'code' => $code, 'name' => $name, - 'item_type' => 'FG', + 'item_type' => 'PT', 'item_category' => 'GUIDERAIL_MODEL', 'unit' => 'SET', 'options' => json_encode($options, JSON_UNESCAPED_UNICODE),