This commit is contained in:
2026-02-04 21:03:31 +09:00
parent 6bed688be0
commit f9b6336eab

View File

@@ -99,7 +99,9 @@ class TypeV2Handler
CLI::write(CLI::color('✅ ArticleInfoEtc 저장 성공', 'blue')); CLI::write(CLI::color('✅ ArticleInfoEtc 저장 성공', 'blue'));
// 수정 정보 입력 (있으면 update, 없으면 insert) // 수정 정보 입력 (있으면 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 ) { foreach ( $modifyInfoParam as $key => $value ) {
if (is_array($value)) { if (is_array($value)) {
CLI::write(CLI::color(" $key : " . json_encode($value, JSON_UNESCAPED_UNICODE) , 'red')); CLI::write(CLI::color(" $key : " . json_encode($value, JSON_UNESCAPED_UNICODE) , 'red'));