From f9b6336eab844efbd2062c1a857184f745a98557 Mon Sep 17 00:00:00 2001 From: jjstyle Date: Wed, 4 Feb 2026 21:03:31 +0900 Subject: [PATCH] =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/Handlers/TypeV2Handler.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Services/Handlers/TypeV2Handler.php b/app/Services/Handlers/TypeV2Handler.php index 32cc690..2bb093f 100644 --- a/app/Services/Handlers/TypeV2Handler.php +++ b/app/Services/Handlers/TypeV2Handler.php @@ -99,7 +99,9 @@ class TypeV2Handler CLI::write(CLI::color('✅ ArticleInfoEtc 저장 성공', 'blue')); // 수정 정보 입력 (있으면 update, 없으면 insert) - if (!$this->modifyInfoModel->saveModifyInfo($vrSq, $modifyInfoParam)) { + // if (!$this->modifyInfoModel->saveModifyInfo($vrSq, $modifyInfoParam)) { + $modifyInfoParam['vr_sq'] = $vrSq; + if (!$this->modifyInfoModel->replace($modifyInfoParam)) { foreach ( $modifyInfoParam as $key => $value ) { if (is_array($value)) { CLI::write(CLI::color(" $key : " . json_encode($value, JSON_UNESCAPED_UNICODE) , 'red'));