From 81ca21634b0f61253742f642904fe8c2b260e65c Mon Sep 17 00:00:00 2001 From: anton Date: Wed, 23 Oct 2024 14:38:05 +0300 Subject: [PATCH] correct unregister event --- intaro.retailcrm/updater.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/intaro.retailcrm/updater.php b/intaro.retailcrm/updater.php index a60bebb9..1bb1eadb 100644 --- a/intaro.retailcrm/updater.php +++ b/intaro.retailcrm/updater.php @@ -16,7 +16,6 @@ use Bitrix\Main\UserConsent\Internals\AgreementTable; use Bitrix\Sale\Internals\OrderPropsGroupTable; use Bitrix\Sale\Internals\OrderPropsTable; use Bitrix\Sale\Internals\PersonTypeTable; -use Intaro\RetailCrm\Component\Advanced\LoyaltyInstaller; /** * Class ToModuleTable @@ -1180,13 +1179,14 @@ function update() { Loader::includeModule('sale'); Loader::includeModule('highloadblock'); + $loyaltyEventClass = 'Intaro\RetailCrm\Component\Handlers\EventsHandlers'; COption::SetOptionString('intaro.retailcrm', 'api_version', 'v5'); RegisterModuleDependences('sale', 'OnSaleOrderSaved', 'intaro.retailcrm', 'RetailCrmEvent', 'orderSave', 99); if (Option::get('intaro.retailcrm', 'loyalty_program_toggle') !== 'Y') { - $loyalty = new LoyaltyInstaller(); - $loyalty->deleteLPEvents(); + UnRegisterModuleDependences('sale', 'OnSaleOrderSaved', 'intaro.retailcrm', $loyaltyEventClass, 'OnSaleOrderSavedHandler'); + UnRegisterModuleDependences('sale', 'OnSaleComponentOrderResultPrepared', 'intaro.retailcrm', $loyaltyEventClass, 'OnSaleComponentOrderResultPreparedHandler'); } }