From 4b7673ed96e803452ba46ad9da5f4bc3e3f51a8a Mon Sep 17 00:00:00 2001 From: Ivan Chaplygin Date: Wed, 4 Dec 2024 16:31:17 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D0=BE=D0=BB=D1=8C=D0=B7?= =?UTF-8?q?=D1=83=D0=B5=D0=BC=D0=BE=D0=B3=D0=BE=20=D0=BA=D0=BE=D0=B4=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- intaro.retailcrm/lib/icml/settingsservice.php | 26 ------------------- 1 file changed, 26 deletions(-) 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']);