parent
22b421ce16
commit
5e21d2260e
1 changed files with 4 additions and 0 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue