diff --git a/intaro.retailcrm/lib/icml/settingsservice.php b/intaro.retailcrm/lib/icml/settingsservice.php index 1aec67b3..1f58643d 100644 --- a/intaro.retailcrm/lib/icml/settingsservice.php +++ b/intaro.retailcrm/lib/icml/settingsservice.php @@ -152,7 +152,6 @@ class SettingsService $this->linkNewProfile(); $this->deleteEmptyProfileCatalogs(); - $this->deleteUnusedOptions(); $this->customPropList = $this->getNewProps(); $this->defaultPropList = $this->getIblockPropsPreset(); @@ -188,31 +187,6 @@ class SettingsService ]; } - private function deleteUnusedOptions() - { - //здесь удаление из b_options удаленных профилей - /* if (CModule::IncludeModule("sale")) { - $profiles = CSaleExport::GetList(['ID' => 'DESC'], ['NAME' => 'retailcrm']); - $ids = []; - - while ($profile = $profiles->Fetch()) { - $ids[(int) $profile['ID']] = (int) $profile['ID']; - - break; - } - - if ($ids === []) { - return; - } - - sort($ids); - - for ($i = 0; $i < end($ids); ++$i) { - - } - }*/ - } - private function getPriceTypes() { $dbPriceType = CCatalogGroup::GetList(['SORT' => 'ASC'], [], [], [], ['ID', 'NAME', 'BASE']);