From 53ad81aec3f59c94f2b691d59e7a59d839c55c64 Mon Sep 17 00:00:00 2001 From: Kocmonavtik <61938582+Kocmonavtik@users.noreply.github.com> Date: Thu, 8 Feb 2024 12:09:20 +0300 Subject: [PATCH] ref #93708 Adding filters after creating and updating order (#322) --- CHANGELOG.md | 3 +++ VERSION | 2 +- doc/3. Customization/Filters.md | 4 ++++ src/include/class-wc-retailcrm-orders.php | 8 +++++++- src/readme.txt | 5 ++++- src/retailcrm.php | 2 +- src/uninstall.php | 2 +- 7 files changed, 21 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d807679..8e47ebc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2024-02-07 4.7.3 +* Added filters after creating and updating an order + ## 2024-01-31 4.7.2 * Fixed error with send address by history diff --git a/VERSION b/VERSION index af9764a..87b18a5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.7.2 +4.7.3 diff --git a/doc/3. Customization/Filters.md b/doc/3. Customization/Filters.md index 586d015..0aecc33 100644 --- a/doc/3. Customization/Filters.md +++ b/doc/3. Customization/Filters.md @@ -42,6 +42,10 @@ > retailcrm_shipping_list - позволяет изменить методы доставки с CMS. +> retailcrm_order_create_after - позволяет проверить создание заказа и произвести дополнительные действия + +> retailcrm_order_update_after - позволяет проверить изменение заказа и произвести дополнительные действия + **Пример использования:** ```php retailcrm->ordersCreate($this->order); + // Allows you to verify order creation and perform additional actions + $response = apply_filters('retailcrm_order_create_after', $response, $wcOrder); + if (!$response instanceof WC_Retailcrm_Response || !$response->isSuccessful()) { return $response->getErrorString(); } @@ -276,6 +279,9 @@ if (!class_exists('WC_Retailcrm_Orders')) : $response = $this->retailcrm->ordersEdit($this->order); + // Allows you to verify order changes and perform additional actions + $response = apply_filters('retailcrm_order_update_after', $response, $wcOrder); + if ($response instanceof WC_Retailcrm_Response && $response->isSuccessful()) { $this->payment = $this->orderUpdatePaymentType($wcOrder); } @@ -633,4 +639,4 @@ if (!class_exists('WC_Retailcrm_Orders')) : return $customerWasChanged; } } -endif; \ No newline at end of file +endif; diff --git a/src/readme.txt b/src/readme.txt index 6c087ec..c18cb86 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla Requires PHP: 7.0 Requires at least: 5.3 Tested up to: 6.4 -Stable tag: 4.7.2 +Stable tag: 4.7.3 License: GPLv1 or later License URI: http://www.gnu.org/licenses/gpl-1.0.html @@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i == Changelog == += 4.7.3 = +* Added filters after creating and updating an order + = 4.7.2 = * Fixed error with send address by history diff --git a/src/retailcrm.php b/src/retailcrm.php index a276469..021c81a 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -5,7 +5,7 @@ * Description: Integration plugin for WooCommerce & Simla.com * Author: RetailDriver LLC * Author URI: http://retailcrm.pro/ - * Version: 4.7.2 + * Version: 4.7.3 * Tested up to: 6.4 * WC requires at least: 5.4 * WC tested up to: 8.5 diff --git a/src/uninstall.php b/src/uninstall.php index b40af8a..260d39b 100644 --- a/src/uninstall.php +++ b/src/uninstall.php @@ -16,7 +16,7 @@ * * @link https://wordpress.org/plugins/woo-retailcrm/ * - * @version 4.7.2 + * @version 4.7.3 * * @package RetailCRM */