From 69e6aa5fe6a5f67cb6a317d851e7d033b0e0ea56 Mon Sep 17 00:00:00 2001 From: jjstyle Date: Mon, 23 Feb 2026 18:54:53 +0900 Subject: [PATCH] =?UTF-8?q?=ED=98=84=EC=9E=A5=ED=99=95=EC=9D=B8=20v2=20?= =?UTF-8?q?=ED=95=AD=EB=AA=A9=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/NaverService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Services/NaverService.php b/app/Services/NaverService.php index efd7b97..24ae3ce 100644 --- a/app/Services/NaverService.php +++ b/app/Services/NaverService.php @@ -13,7 +13,7 @@ use Exception; * 네이버 부동산 매물 처리 서비스 * * 네이버 API 응답을 받아서 타입별 처리 로직으로 위임하는 오케스트레이터 역할 - * - Type S: 현장확인 (A01) + * - Type S, S_VR: 현장확인 (A01) * - Type V2: 일반/서류/비공동 (D04, F01 등) */ class NaverService @@ -68,7 +68,7 @@ class NaverService CLI::write(CLI::color('🟢 임시테이블 저장 완료', 'green')); // 3. 타입별 분기 처리 - if ($vType === 'S') { + if ($vType === 'S' || $vType === 'S_VR') { return $this->typeSHandler->handle($articleNumber, $rawData, $payload); } else { return $this->typeV2Handler->handle($articleNumber, $rawData, $payload);