0'], null, '*', null, true); if (!empty($customList)) { foreach ($customList as $custom) { $userId = $custom->userId ?? 0; $shopId = $custom->shopId ?? 0; $customId = $custom->id ?? 0; $hd = HdClass::getByCondition(['userId' => $userId, 'shopId' => $shopId], true); if (!empty($hd)) { $hdId = $hd->id ?? 0; $hd->customId = $customId; $hd->save(); $custom->hdId = $hdId; $custom->save(); } } } } }