From bbf3acb83bb036c8228b797a83b511245ddf6ed4 Mon Sep 17 00:00:00 2001 From: Ivan Chaplygin Date: Thu, 7 Nov 2024 12:02:33 +0300 Subject: [PATCH] inspection update --- src/include/class-wc-retailcrm-base.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/include/class-wc-retailcrm-base.php b/src/include/class-wc-retailcrm-base.php index b9a75b8..7f5cbfd 100644 --- a/src/include/class-wc-retailcrm-base.php +++ b/src/include/class-wc-retailcrm-base.php @@ -557,6 +557,10 @@ if (!class_exists('WC_Retailcrm_Base')) { { WC_Retailcrm_Logger::setHook(current_action()); + if (did_action('woocommerce_new_order') === 0) { + return; + } + if (did_action('woocommerce_checkout_order_processed')) { WC_Retailcrm_Logger::info( __METHOD__, @@ -566,10 +570,6 @@ if (!class_exists('WC_Retailcrm_Base')) { return; } - if (did_action('woocommerce_new_order') === 0) { - return; - } - $logText = 'Creation order'; if (is_admin()) { @@ -716,8 +716,8 @@ if (!class_exists('WC_Retailcrm_Base')) { { WC_Retailcrm_Logger::setHook(current_action()); - if ($this->updatedOrderId !== []) { - foreach ($this->updatedOrderId as $orderId) { + foreach ($this->updatedOrderId as $orderId) { + if (!isset($this->createdOrderId[$orderId])) { $this->orders->updateOrder($orderId); } }