From 3ef3198ad4394cd4fc42c66c26921eedc8379c9e Mon Sep 17 00:00:00 2001 From: anton Date: Wed, 23 Oct 2024 16:55:19 +0300 Subject: [PATCH] uninstall loyalty events in options --- intaro.retailcrm/options.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/intaro.retailcrm/options.php b/intaro.retailcrm/options.php index a98f60ae..1aed6ded 100644 --- a/intaro.retailcrm/options.php +++ b/intaro.retailcrm/options.php @@ -612,6 +612,9 @@ if (isset($_POST['Update']) && ($_POST['Update'] === 'Y')) { ConfigProvider::setLoyaltyProgramStatus('Y'); } else { ConfigProvider::setLoyaltyProgramStatus('N'); + $loyaltyEventClass = 'Intaro\RetailCrm\Component\Handlers\EventsHandlers'; + UnRegisterModuleDependences('sale', 'OnSaleOrderSaved', 'intaro.retailcrm', $loyaltyEventClass, 'OnSaleOrderSavedHandler'); + UnRegisterModuleDependences('sale', 'OnSaleComponentOrderResultPrepared', 'intaro.retailcrm', $loyaltyEventClass, 'OnSaleComponentOrderResultPreparedHandler'); } try {