1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00
Adding comments to filters
This commit is contained in:
Ivan Chaplygin 2024-02-08 10:50:39 +03:00
parent 22b421ce16
commit 5e21d2260e

View file

@ -91,6 +91,8 @@ if (!class_exists('WC_Retailcrm_Orders')) :
$this->processOrder($wcOrder);
$response = $this->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()) {
@ -276,6 +278,8 @@ if (!class_exists('WC_Retailcrm_Orders')) :
$this->processOrder($wcOrder, true);
$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()) {